1 | <?php declare(strict_types=1); |
||
7 | abstract class EmptyExchangeType implements ExchangeTypeInterface, EmptyResourceInterface |
||
8 | { |
||
9 | /** |
||
10 | * @return string |
||
11 | */ |
||
12 | public function name() : string |
||
16 | |||
17 | /** |
||
18 | * @return string |
||
19 | */ |
||
20 | public function description() : string |
||
24 | |||
25 | /** |
||
26 | * @return bool |
||
27 | */ |
||
28 | public function enabled() : bool |
||
32 | } |
||
33 |