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 11<?php
22
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+
310if (!file_exists (__DIR__ .'/src ' ) || !file_exists (__DIR__ .'/tests ' )) {
411 exit (0 );
512}
916;
1017
1118return (new PhpCsFixer \Config ())
12- ->setRules (array (
19+ ->setRules ([
1320 '@Symfony ' => true ,
1421 '@Symfony:risky ' => true ,
22+ 'phpdoc_to_comment ' => false ,
1523 'header_comment ' => [
1624 'header ' => <<<EOF
1725This file is part of the SymfonyCasts ResetPasswordBundle package.
2230 ],
2331 // Because of the commented out argument in ResetPasswordHelperInterface
2432 'no_superfluous_phpdoc_tags ' => false ,
25- ) )
33+ ] )
2634 ->setRiskyAllowed (true )
2735 ->setFinder ($ finder )
2836;
You can’t perform that action at this time.
0 commit comments