1 | <?php |
||
5 | abstract class Factory |
||
6 | { |
||
7 | /** |
||
8 | * The adapter being constructed by the factory |
||
9 | */ |
||
10 | protected $adapter; |
||
11 | |||
12 | /** |
||
13 | * Initialise the adapter, including injecting an http client |
||
14 | * |
||
15 | * @param object $adapter |
||
16 | * @param object $client |
||
17 | * @return void |
||
18 | */ |
||
19 | public function init($adapter, $client = null) |
||
35 | } |
||
36 |