I have next lines in services.yml
:
services:
_defaults:
autowire: true
autoconfigure: false
AppBundle\CompanyInfo\:
resource: '../../../src/AppBundle/CompanyInfo/*'
# TODO: Find how to break this line.
exclude: '../../../src/AppBundle/CompanyInfo/**/{Company.php,CompanyAddress.php,MultipleCompanyAttributesParserDecorator.php,Executive.php,Person.php,ForeignCompanyFounder.php,PersonFounder.php,RussianCompanyFounder.php,EconomicActivity.php,EconomicActivityInfo.php}'
How can I break exclude glob to multiple lines?
I need something like this (doesn't work):
exclude: >
../../../src/AppBundle/CompanyInfo/**/{Company.php,
CompanyAddress.php,
MultipleCompanyAttributesParserDecorator.php,
Executive.php,
Person.php,
ForeignCompanyFounder.php,
PersonFounder.php,
RussianCompanyFounder.php,
EconomicActivity.php,
EconomicActivityInfo.php}