Autowire services with the Autowire attribute in Drupal
Issue:
If dependencies are injected into a service class, changes must be made in both the `*.services.yml` file and the PHP class itself.
Solution:
If we set autowiring to true in the *.services.yml file, we can use the Autowire attribute in our PHP service class. This allows us to focus on the service class itself without having to switch between the *.services.yml file and the PHP service class.