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

Commit c0bd955

Browse files
committed
:octocat:
1 parent 5d47dd9 commit c0bd955

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/API/APITestAbstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
use Psr\Http\Message\{RequestInterface, ResponseInterface};
2323
use Psr\Log\LoggerInterface;
2424

25-
class APITestAbstract extends TestCase{
25+
abstract class APITestAbstract extends TestCase{
2626

2727
/**
2828
* @var string

tests/API/OAuth1APITestAbstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* @property \chillerlan\OAuth\Core\OAuth1Interface $provider
1919
*/
20-
class OAuth1APITestAbstract extends APITestAbstract{
20+
abstract class OAuth1APITestAbstract extends APITestAbstract{
2121

2222
public function testOAuth1Instance(){
2323
$this->assertInstanceOf(OAuth1Interface::class, $this->provider);

tests/API/OAuth2APITestAbstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* @property \chillerlan\OAuth\Core\OAuth2Interface $provider
1919
*/
20-
class OAuth2APITestAbstract extends APITestAbstract{
20+
abstract class OAuth2APITestAbstract extends APITestAbstract{
2121

2222
public function testOAuth2Instance(){
2323
$this->assertInstanceOf(OAuth2Interface::class, $this->provider);

0 commit comments

Comments
 (0)