mirror of
https://github.com/danog/psalm-plugin-phpunit.git
synced 2024-11-26 20:15:08 +01:00
Assert functions are public and static
This commit is contained in:
parent
d3c96627cd
commit
aa0be36782
@ -102,7 +102,7 @@ abstract class Assert
|
||||
* @psalm-assert =T $actual
|
||||
* @return void
|
||||
*/
|
||||
function assertSame($expected, $actual, $message = '') {}
|
||||
public static function assertSame($expected, $actual, $message = '') {}
|
||||
|
||||
/**
|
||||
* Asserts that two variables are not the same.
|
||||
@ -114,5 +114,5 @@ abstract class Assert
|
||||
* @psalm-assert !=T $actual
|
||||
* @return void
|
||||
*/
|
||||
function assertNotSame($expected, $actual, $message = '') {}
|
||||
public static function assertNotSame($expected, $actual, $message = '') {}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user