Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
21 | abstract class Network |
||
22 | { |
||
23 | use Properties, Prefixed, Storage, Delegate; |
||
24 | |||
25 | /** |
||
26 | * Network constructor. |
||
27 | * @param Refreshing $refresher |
||
28 | */ |
||
29 | final public function __construct(Refreshing $refresher) |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @return mixed |
||
47 | */ |
||
48 | abstract protected function driver() : object; |
||
49 | } |
||
50 |