1 | <?php declare(strict_types=1); |
||
15 | abstract class ClientProperties extends AbstractResource implements ClientPropertiesInterface |
||
16 | { |
||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $product; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $version; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $platform; |
||
31 | |||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | protected $copyright; |
||
36 | |||
37 | /** |
||
38 | * @var string |
||
39 | */ |
||
40 | protected $information; |
||
41 | |||
42 | /** |
||
43 | * @var Connection\ClientProperties\Capabilities |
||
44 | */ |
||
45 | protected $capabilities; |
||
46 | |||
47 | /** |
||
48 | * @return string |
||
49 | */ |
||
50 | public function product(): string |
||
51 | { |
||
52 | return $this->product; |
||
53 | } |
||
54 | |||
55 | /** |
||
56 | * @return string |
||
57 | */ |
||
58 | public function version(): string |
||
59 | { |
||
60 | return $this->version; |
||
61 | } |
||
62 | |||
63 | /** |
||
64 | * @return string |
||
65 | */ |
||
66 | public function platform(): string |
||
67 | { |
||
68 | return $this->platform; |
||
69 | } |
||
70 | |||
71 | /** |
||
72 | * @return string |
||
73 | */ |
||
74 | public function copyright(): string |
||
75 | { |
||
76 | return $this->copyright; |
||
77 | } |
||
78 | |||
79 | /** |
||
80 | * @return string |
||
81 | */ |
||
82 | public function information(): string |
||
83 | { |
||
84 | return $this->information; |
||
85 | } |
||
86 | |||
87 | /** |
||
88 | * @return Connection\ClientProperties\Capabilities |
||
89 | */ |
||
90 | public function capabilities(): Connection\ClientProperties\Capabilities |
||
94 | } |
||
95 |