1 | <?php |
||
12 | class Core |
||
13 | { |
||
14 | /** |
||
15 | * @var ClientInterface |
||
16 | */ |
||
17 | public $client; |
||
18 | /** |
||
19 | * @var Authenticator |
||
20 | */ |
||
21 | public $auth; |
||
22 | |||
23 | /** |
||
24 | * Core constructor. |
||
25 | * |
||
26 | * @param ClientInterface $client |
||
27 | * @throws \Samerior\MobileMoney\Mpesa\Exceptions\MpesaException |
||
28 | */ |
||
29 | 2 | public function __construct(ClientInterface $client) |
|
34 | } |
||
35 |