| 1 | <?php |
||
| 10 | abstract class Client |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * The request launcher instance. |
||
| 14 | * |
||
| 15 | * @var \Afonso\Emt\RequestLauncher |
||
| 16 | */ |
||
| 17 | protected $launcher; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Create a new Client instance with the given client ID and passkey. |
||
| 21 | * |
||
| 22 | * @param string $clientId |
||
| 23 | * @param string $passkey |
||
| 24 | */ |
||
| 25 | 21 | public function __construct($clientId, $passkey) |
|
| 29 | } |
||
| 30 |