Total Complexity | 1 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | class PluginRegistryResponseEntity extends ResponseEntity |
||
26 | { |
||
27 | /** @var string */ |
||
28 | protected $id; |
||
29 | |||
30 | /** @var string */ |
||
31 | protected $pluginVersion; |
||
32 | |||
33 | /** @var string */ |
||
34 | protected $cmsVersion; |
||
35 | |||
36 | /** |
||
37 | * @var string |
||
38 | * @see ChannelSet |
||
39 | */ |
||
40 | protected $channel; |
||
41 | |||
42 | /** @var string */ |
||
43 | protected $host; |
||
44 | |||
45 | /** |
||
46 | * @var array |
||
47 | * @see PluginCommandNameEnum |
||
48 | */ |
||
49 | protected $supportedCommands; |
||
50 | |||
51 | /** @var string */ |
||
52 | protected $commandEndpoint; |
||
53 | |||
54 | /** @var string[] */ |
||
55 | protected $businessIds; |
||
56 | |||
57 | /** |
||
58 | * @return array |
||
59 | */ |
||
60 | public function getRequired() |
||
70 |