@@ -15,24 +15,24 @@ return PhpCsFixer\Config::create()
15
15
->in (__DIR__ .'/src ' )
16
16
->exclude (array (
17
17
// 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 ' ,
20
20
// 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 ' ,
23
23
// resource templates
24
- 'src/ Symfony/Bundle/FrameworkBundle/Resources/views/Form ' ,
24
+ 'Symfony/Bundle/FrameworkBundle/Resources/views/Form ' ,
25
25
))
26
26
// 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 ' )
28
28
// 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 ' )
31
31
// yml
32
- ->notPath ('src/ Symfony/Component/Yaml/Tests/Fixtures/sfTests.yml ' )
32
+ ->notPath ('Symfony/Component/Yaml/Tests/Fixtures/sfTests.yml ' )
33
33
// 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 ' )
35
35
// 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 ' )
37
37
)
38
38
;
0 commit comments