| 1 | <?php declare(strict_types=1); |
||
| 7 | abstract class EmptyClientProperties implements ClientPropertiesInterface, EmptyResourceInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @return string |
||
| 11 | */ |
||
| 12 | 2 | public function product(): string |
|
| 16 | |||
| 17 | /** |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | 2 | public function version(): string |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | 2 | public function platform(): string |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | 2 | public function copyright(): string |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | 2 | public function information(): string |
|
| 48 | |||
| 49 | /** |
||
| 50 | * @return Connection\ClientProperties\Capabilities |
||
| 51 | */ |
||
| 52 | 2 | public function capabilities(): Connection\ClientProperties\Capabilities |
|
| 56 | } |
||
| 57 |