1 | <?php |
||
8 | abstract class BaseExample |
||
9 | { |
||
10 | /** |
||
11 | * The Random.org API bridge. |
||
12 | * |
||
13 | * @var \drupol\Yaroc\RandomOrgAPI |
||
14 | */ |
||
15 | private $randomOrgAPI; |
||
16 | |||
17 | /** |
||
18 | * BaseExample constructor. |
||
19 | */ |
||
20 | public function __construct() |
||
29 | |||
30 | /** |
||
31 | * Get the Random.org API bridge. |
||
32 | * |
||
33 | * @return \drupol\Yaroc\RandomOrgAPI |
||
34 | */ |
||
35 | public function getRandomOrgAPI() |
||
39 | |||
40 | public function getHttpClient() |
||
44 | } |
||
45 |