File tree Expand file tree Collapse file tree
rules-tests/Php55/Rector/String_/StringClassNameToClassConstantRector Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Rector \Tests \Php55 \Rector \String_ \StringClassNameToClassConstantRector \Fixture ;
4+
5+ final class CoverEnum
6+ {
7+ public function run ()
8+ {
9+ $ enumClass = 'Rector\Tests\Php55\Rector\String_\StringClassNameToClassConstantRector\Source\SomeEnum ' ;
10+ }
11+ }
12+
13+ ?>
14+ -----
15+ <?php
16+
17+ namespace Rector \Tests \Php55 \Rector \String_ \StringClassNameToClassConstantRector \Fixture ;
18+
19+ final class CoverEnum
20+ {
21+ public function run ()
22+ {
23+ $ enumClass = \Rector \Tests \Php55 \Rector \String_ \StringClassNameToClassConstantRector \Source \SomeEnum::class;
24+ }
25+ }
26+
27+ ?>
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Rector \Tests \Php55 \Rector \String_ \StringClassNameToClassConstantRector \Source ;
4+
5+ enum SomeEnum
6+ {
7+ }
You can’t perform that action at this time.
0 commit comments