1 | <?php |
||
7 | use GuzzleHttp\HandlerStack; |
||
8 | |||
9 | abstract class TestBase extends \PHPUnit_Framework_TestCase |
||
10 | { |
||
11 | /** |
||
12 | * @var ClientInterface |
||
13 | */ |
||
14 | protected $client; |
||
15 | |||
16 | /** |
||
17 | * @var MockOAuth2Server |
||
18 | */ |
||
19 | protected $server; |
||
20 | |||
21 | /** |
||
22 | * @param array $options |
||
23 | * @param array $serverOptions |
||
57 |