@@ -15,24 +15,24 @@ return PhpCsFixer\Config::create()
1515 ->in (__DIR__ .'/src ' )
1616 ->exclude (array (
1717 // directories containing files with content that is autogenerated by `var_export`, which breaks CS in output code
18- 'src/ Symfony/Component/DependencyInjection/Tests/Fixtures ' ,
19- 'src/ Symfony/Component/Routing/Tests/Fixtures/dumper ' ,
18+ 'Symfony/Component/DependencyInjection/Tests/Fixtures ' ,
19+ 'Symfony/Component/Routing/Tests/Fixtures/dumper ' ,
2020 // fixture templates
21- 'src/ Symfony/Component/Templating/Tests/Fixtures/templates ' ,
22- 'src/ Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom ' ,
21+ 'Symfony/Component/Templating/Tests/Fixtures/templates ' ,
22+ 'Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom ' ,
2323 // resource templates
24- 'src/ Symfony/Bundle/FrameworkBundle/Resources/views/Form ' ,
24+ 'Symfony/Bundle/FrameworkBundle/Resources/views/Form ' ,
2525 ))
2626 // file content autogenerated by `var_export`
27- ->notPath ('src/ Symfony/Component/Translation/Tests/fixtures/resources.php ' )
27+ ->notPath ('Symfony/Component/Translation/Tests/fixtures/resources.php ' )
2828 // autogenerated xmls
29- ->notPath ('src/ Symfony/Component/Console/Tests/Fixtures/application_1.xml ' )
30- ->notPath ('src/ Symfony/Component/Console/Tests/Fixtures/application_2.xml ' )
29+ ->notPath ('Symfony/Component/Console/Tests/Fixtures/application_1.xml ' )
30+ ->notPath ('Symfony/Component/Console/Tests/Fixtures/application_2.xml ' )
3131 // yml
32- ->notPath ('src/ Symfony/Component/Yaml/Tests/Fixtures/sfTests.yml ' )
32+ ->notPath ('Symfony/Component/Yaml/Tests/Fixtures/sfTests.yml ' )
3333 // test template
34- ->notPath ('src/ Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom/_name_entry_label.html.php ' )
34+ ->notPath ('Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom/_name_entry_label.html.php ' )
3535 // explicit heredoc test
36- ->notPath ('src/ Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/translation.html.php ' )
36+ ->notPath ('Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/translation.html.php ' )
3737 )
3838;
0 commit comments