File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 22
33declare (strict_types=1 );
44
5- use PhpCsFixer \Fixer \Casing \NativeFunctionCasingFixer ;
65use PhpCsFixer \Fixer \ClassNotation \VisibilityRequiredFixer ;
76use PhpCsFixer \Fixer \Import \NoUnusedImportsFixer ;
87use PhpCsFixer \Fixer \Import \OrderedImportsFixer ;
1413use Symplify \EasyCodingStandard \ValueObject \Set \SetList ;
1514
1615return static function (ContainerConfigurator $ containerConfigurator ): void {
17- $ containerConfigurator ->import (SetList::PHP_CS_FIXER );
16+ $ containerConfigurator ->import (SetList::SYMFONY );
1817
1918 $ services = $ containerConfigurator ->services ();
2019 $ services ->set (DeclareStrictTypesFixer::class);
Original file line number Diff line number Diff line change @@ -18,4 +18,10 @@ public static function choices(): array
1818 'foo ' => 'bar ' ,
1919 ];
2020 }
21+
22+ public function run (): void
23+ {
24+ /** @var string|null $description */
25+ $ description = true ? 'This is a description ' : null ;
26+ }
2127}
You can’t perform that action at this time.
0 commit comments