File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ /*
4
+ * This file is part of the SymfonyCasts VerifyEmailBundle package.
5
+ * Copyright (c) SymfonyCasts <https://symfonycasts.com/>
6
+ * For the full copyright and license information, please view the LICENSE
7
+ * file that was distributed with this source code.
8
+ */
9
+
3
10
if (!file_exists (__DIR__ .'/src ' ) || !file_exists (__DIR__ .'/tests ' )) {
4
11
exit (0 );
5
12
}
9
16
;
10
17
11
18
return (new PhpCsFixer \Config ())
12
- ->setRules (array (
19
+ ->setRules ([
13
20
'@Symfony ' => true ,
14
21
'@Symfony:risky ' => true ,
22
+ 'phpdoc_to_comment ' => false ,
15
23
'header_comment ' => [
16
24
'header ' => <<<EOF
17
25
This file is part of the SymfonyCasts ResetPasswordBundle package.
22
30
],
23
31
// Because of the commented out argument in ResetPasswordHelperInterface
24
32
'no_superfluous_phpdoc_tags ' => false ,
25
- ) )
33
+ ] )
26
34
->setRiskyAllowed (true )
27
35
->setFinder ($ finder )
28
36
;
You can’t perform that action at this time.
0 commit comments