-
Notifications
You must be signed in to change notification settings - Fork 20
Fix assertions for phpstan master #51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
d63a144
b6f6b40
e00ad8f
3323fc6
bc39b46
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,6 +25,10 @@ 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, | ||
|
|
@@ -59,7 +63,7 @@ public function testDeprecatedStaticMethodCall(): void | |
| ], | ||
| [ | ||
| 'Call to deprecated method deprecatedFoo() of class CheckDeprecatedStaticMethodCall\Foo.', | ||
| 24, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you! One more thing I need here is to actually add a test that checks that this scenario is continuted to be reported in a valid scenario, e.g. calling There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hm ok. I will see if I can get that fixed. If not I will let you know There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If I understood your post correctly, I think this has been added back in another way now? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, it's just that this extension is built with latest stable PHPStan version and not with dev-master. Update the composer.json for the purpose of this PR :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, I know that. I was referring to the actual meaning of your sentence 🤓 Anyway updates composer.json as well now |
||
| 33, | ||
| ], | ||
| ] | ||
| ); | ||
|
|
||