@@ -8,33 +8,34 @@ return PhpCsFixer\Config::create()
8
8
'no_unreachable_default_argument_value ' => false ,
9
9
'braces ' => array ('allow_single_line_closure ' => true ),
10
10
'heredoc_to_nowdoc ' => false ,
11
+ 'phpdoc_annotation_without_dot ' => false ,
11
12
))
12
13
->setRiskyAllowed (true )
13
14
->setFinder (
14
15
PhpCsFixer \Finder::create ()
15
16
->in (__DIR__ .'/src ' )
16
17
->exclude (array (
17
18
// 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 ' ,
19
+ 'Symfony/Component/DependencyInjection/Tests/Fixtures ' ,
20
+ 'Symfony/Component/Routing/Tests/Fixtures/dumper ' ,
20
21
// fixture templates
21
- 'src/ Symfony/Component/Templating/Tests/Fixtures/templates ' ,
22
- 'src/ Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom ' ,
22
+ 'Symfony/Component/Templating/Tests/Fixtures/templates ' ,
23
+ 'Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom ' ,
23
24
// generated fixtures
24
- 'src/ Symfony/Component/VarDumper/Tests/Fixtures ' ,
25
+ 'Symfony/Component/VarDumper/Tests/Fixtures ' ,
25
26
// resource templates
26
- 'src/ Symfony/Bundle/FrameworkBundle/Resources/views/Form ' ,
27
+ 'Symfony/Bundle/FrameworkBundle/Resources/views/Form ' ,
27
28
))
28
29
// file content autogenerated by `var_export`
29
- ->notPath ('src/ Symfony/Component/Translation/Tests/fixtures/resources.php ' )
30
+ ->notPath ('Symfony/Component/Translation/Tests/fixtures/resources.php ' )
30
31
// autogenerated xmls
31
- ->notPath ('src/ Symfony/Component/Console/Tests/Fixtures/application_1.xml ' )
32
- ->notPath ('src/ Symfony/Component/Console/Tests/Fixtures/application_2.xml ' )
32
+ ->notPath ('Symfony/Component/Console/Tests/Fixtures/application_1.xml ' )
33
+ ->notPath ('Symfony/Component/Console/Tests/Fixtures/application_2.xml ' )
33
34
// yml
34
- ->notPath ('src/ Symfony/Component/Yaml/Tests/Fixtures/sfTests.yml ' )
35
+ ->notPath ('Symfony/Component/Yaml/Tests/Fixtures/sfTests.yml ' )
35
36
// test template
36
- ->notPath ('src/ Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom/_name_entry_label.html.php ' )
37
+ ->notPath ('Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/Resources/Custom/_name_entry_label.html.php ' )
37
38
// explicit heredoc test
38
- ->notPath ('src/ Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/translation.html.php ' )
39
+ ->notPath ('Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/translation.html.php ' )
39
40
)
40
41
;
0 commit comments