Developer may specify service with autowire option in Symfony 2.8/3.0. But plugin highlight this service with Missing argument message.
Old way:
some_service_name:
class: someClassName
arguments: ['@other_service_id']
New way:
some_service_name:
class: someClassName
autowire: true
Don't check arguments if autowire option specified.
Developer may specify service with autowire option in Symfony 2.8/3.0. But plugin highlight this service with
Missing argumentmessage.Old way:
New way:
Don't check arguments if autowire option specified.