Total Complexity | 1 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class PluginRegistryRequestEntity extends RequestEntity |
||
27 | { |
||
28 | const UNDERSCORE_ON_SERIALIZATION = false; |
||
29 | |||
30 | /** |
||
31 | * @required only for registration |
||
32 | * @var string |
||
33 | */ |
||
34 | protected $pluginVersion; |
||
35 | |||
36 | /** |
||
37 | * @required only for registration |
||
38 | * @var string |
||
39 | */ |
||
40 | protected $cmsVersion; |
||
41 | |||
42 | /** |
||
43 | * @required |
||
44 | * @var string |
||
45 | * @see ChannelSet |
||
46 | */ |
||
47 | protected $channel; |
||
48 | |||
49 | /** |
||
50 | * @required |
||
51 | * @var string |
||
52 | */ |
||
53 | protected $host; |
||
54 | |||
55 | /** |
||
56 | * @var array |
||
57 | * @see PluginCommandNameEnum |
||
58 | */ |
||
59 | protected $supportedCommands; |
||
60 | |||
61 | /** @var string */ |
||
62 | protected $commandEndpoint; |
||
63 | |||
64 | /** @var string[] */ |
||
65 | protected $businessIds; |
||
66 | |||
67 | /** |
||
68 | * @return array |
||
69 | */ |
||
70 | public function getRequired() |
||
78 |