1 | <?php |
||
11 | class System extends Resource |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @var array |
||
16 | */ |
||
17 | protected $actions = [ |
||
18 | "info" => ["xml"], // /api/V/system/info |
||
19 | "logstorage" => ["xml"], // /api/V/system/logstorage |
||
20 | "logstorage/incomplete" => ["xml"] // /api/V/system/logstorage/incomplete |
||
21 | ]; |
||
22 | |||
23 | /** |
||
24 | * @param HttpClient $client |
||
25 | * @param null $name |
||
26 | */ |
||
27 | 9 | public function __construct(HttpClient $client, $name = null) |
|
32 | } |
||
33 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..