Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Jun 4, 2020
1 parent 9b4b885 commit dd7bd75
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
],
"require": {
"php": "~7.1",
"phpstan/phpstan": "^0.12"
"phpstan/phpstan": "^0.12.26"
},
"require-dev": {
"consistence/coding-standard": "^3.0.1",
Expand Down
4 changes: 0 additions & 4 deletions tests/Rules/Deprecations/CallToDeprecatedMethodRuleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ public function testDeprecatedMethodCall(): void
'Call to deprecated method deprecatedFoo() of class CheckDeprecatedMethodCall\Foo.',
7,
],
[
'Call to deprecated method deprecatedFoo() of class CheckDeprecatedMethodCall\Bar.',
10,
],
[
'Call to deprecated method deprecatedFoo2() of class CheckDeprecatedMethodCall\Foo.',
11,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ public function testDeprecatedStaticMethodCall(): void
'Call to deprecated method deprecatedFoo() of class CheckDeprecatedStaticMethodCall\Foo.',
6,
],
[
'Call to deprecated method deprecatedFoo() of class CheckDeprecatedStaticMethodCall\Bar.',
8,
],
[
'Call to deprecated method deprecatedFoo2() of class CheckDeprecatedStaticMethodCall\Foo.',
9,
Expand Down Expand Up @@ -64,6 +60,10 @@ public function testDeprecatedStaticMethodCall(): void
"Call to deprecated method deprecatedWithDescription() of class CheckDeprecatedStaticMethodCall\Foo:\nThis is probably a singleton.",
16,
],
[
'Call to deprecated method deprecatedFoo() of class CheckDeprecatedStaticMethodCall\Foo.',
24,
],
]
);
}
Expand Down

0 comments on commit dd7bd75

Please sign in to comment.