Skip to content

Commit abd2aa3

Browse files
committed
cleasns up
1 parent a41b97c commit abd2aa3

File tree

1 file changed

+2
-2
lines changed
  • rules-tests/DowngradePhp83/Rector/ClassConstFetch/DowngradeDynamicClassConstFetchRector/Fixture

1 file changed

+2
-2
lines changed

rules-tests/DowngradePhp83/Rector/ClassConstFetch/DowngradeDynamicClassConstFetchRector/Fixture/fixture.php.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Fixture
1010

1111
public function run()
1212
{
13-
$someValue = 'foo';
13+
$someValue = 'FOO';
1414
Fixture::{$someValue};
1515
}
1616
}
@@ -29,7 +29,7 @@ class Fixture
2929

3030
public function run()
3131
{
32-
$someValue = 'foo';
32+
$someValue = 'FOO';
3333
constant(Fixture::class . '::' . $someValue);
3434
}
3535
}

0 commit comments

Comments
 (0)