Invoke PHPUnit's assertions statically

This commit is contained in:
Daniel Londero
2020-10-04 00:35:14 +02:00
parent d426dbc684
commit 065d314608
99 changed files with 567 additions and 567 deletions

View File

@@ -14,6 +14,6 @@ class VerifyAuthenticationExceptionTest extends TestCase
{
$e = VerifyAuthenticationException::forInvalidApiKey();
$this->assertEquals('Provided API key does not exist or is invalid.', $e->getMessage());
self::assertEquals('Provided API key does not exist or is invalid.', $e->getMessage());
}
}