1 | <?php |
||
29 | class DatabaseInspector extends Client |
||
30 | { |
||
31 | |||
32 | use InspectorTrait; |
||
33 | |||
34 | /** |
||
35 | * getClientType |
||
36 | * |
||
37 | * @see ClientInterface |
||
38 | */ |
||
39 | public function getClientType() |
||
43 | |||
44 | /** |
||
45 | * getClientIdentifier |
||
46 | * |
||
47 | * @see ClientInterface |
||
48 | */ |
||
49 | public function getClientIdentifier() |
||
53 | |||
54 | /** |
||
55 | * getVersion |
||
56 | * |
||
57 | * Return server version. |
||
58 | * |
||
59 | * @return string |
||
60 | */ |
||
61 | public function getVersion() |
||
70 | } |
||
71 |