| 1 | <?php |
||
| 12 | class Client extends AbstractClient |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $domain = 'http://pokeapi.co/api/v1'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Client constructor. |
||
| 21 | * @param array $endpoints |
||
| 22 | * @param array $config |
||
| 23 | */ |
||
| 24 | public function __construct(array $endpoints = [], array $config = []) |
||
| 36 | } |
||
| 37 |