I am working on a Symfony 2 application implemented by another company and came across the following service definition:
service_id: class: 'path\to\class' calls: - [setRequest, ['@?request=']]
I know what the question mark in @?request= means (if the service does not exist, setRequest not called), but what does the equal sign at the end of the mean mean?
Thanks!
source share