Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Jul 10, 2021
1 parent 79abee3 commit 91bdd96
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ public function testAccessDeprecatedStaticProperty(): void
17,
],
[
'Access to deprecated static property $deprecatedFooFromTrait of class AccessDeprecatedStaticProperty\FooTrait.',
'Access to deprecated static property $deprecatedFooFromTrait of class AccessDeprecatedStaticProperty\Foo.',
22,
],
[
'Access to deprecated static property $deprecatedFooFromTrait of class AccessDeprecatedStaticProperty\FooTrait.',
'Access to deprecated static property $deprecatedFooFromTrait of class AccessDeprecatedStaticProperty\Foo.',
23,
],
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
$foo::$deprecatedFoo = 'foo';
$foo::$deprecatedFoo;

FooTrait::$fooFromTrait = 'foo';
FooTrait::$fooFromTrait;
Foo::$fooFromTrait = 'foo';
Foo::$fooFromTrait;

FooTrait::$deprecatedFooFromTrait = 'foo';
FooTrait::$deprecatedFooFromTrait;
Foo::$deprecatedFooFromTrait = 'foo';
Foo::$deprecatedFooFromTrait;

$foo = new Foo();

Expand Down

0 comments on commit 91bdd96

Please sign in to comment.