File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
tests/Issues/AutoImport/Fixture Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Rector \Tests \Issues \AutoImport \Fixture ;
4+
5+ use Symfony \Component \Console \Input \InputInterface ;
6+ use Symfony \Component \Console \Output \OutputInterface ;
7+
8+ class DoNotAddCastValidIntTypeFromName3 extends \Symfony \Component \Console \Command \Command
9+ {
10+ private ?OutputInterface $ outputInterface = null ;
11+
12+ protected function execute (InputInterface $ input , OutputInterface $ output ): int
13+ {
14+ return \Symfony \Component \Console \Command \Command::SUCCESS ;
15+ }
16+ }
17+
18+ ?>
19+ -----
20+ <?php
21+
22+ namespace Rector \Tests \Issues \AutoImport \Fixture ;
23+
24+ use Symfony \Component \Console \Command \Command ;
25+ use Symfony \Component \Console \Input \InputInterface ;
26+ use Symfony \Component \Console \Output \OutputInterface ;
27+
28+ class DoNotAddCastValidIntTypeFromName3 extends Command
29+ {
30+ protected function execute (InputInterface $ input , OutputInterface $ output ): int
31+ {
32+ return Command::SUCCESS ;
33+ }
34+ }
35+
36+ ?>
You can’t perform that action at this time.
0 commit comments