Skip to content
This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Commit 5eb626b

Browse files
committed
🚿
1 parent 230b26e commit 5eb626b

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

tests/Providers/GenericOAuth2TestBasic.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,13 @@ public function testRefreshAccessTokenException(){
4545
$this->expectException(ProviderException::class);
4646
$this->expectExceptionMessage('token refresh not supported');
4747

48-
/** @noinspection PhpUndefinedMethodInspection */
4948
$this->provider->refreshAccessToken();
5049
}
5150

5251
public function testGetClientCredentialsTokenException(){
5352
$this->expectException(ProviderException::class);
5453
$this->expectExceptionMessage('client credentials token not supported');
5554

56-
/** @noinspection PhpUndefinedMethodInspection */
5755
$this->provider->getClientCredentialsToken();
5856
}
5957

tests/Providers/ProviderTestAbstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ protected function getProvider():OAuthInterface{
139139
*
140140
* @return \ReflectionMethod
141141
*/
142-
protected function getMethod(string $method):ReflectionMethod {
142+
protected function getMethod(string $method):ReflectionMethod{
143143
$method = $this->reflection->getMethod($method);
144144
$method->setAccessible(true);
145145

0 commit comments

Comments
 (0)