Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
32 | class SubscriptionActionEntity extends MessageEntity |
||
33 | { |
||
34 | const UNDERSCORE_ON_SERIALIZATION = false; |
||
35 | |||
36 | /** @var string */ |
||
37 | protected $name; |
||
38 | |||
39 | /** @var string */ |
||
40 | protected $url; |
||
41 | |||
42 | /** @var string */ |
||
43 | protected $method; |
||
44 | |||
45 | /** |
||
46 | * @return array |
||
47 | */ |
||
48 | public function getRequired() |
||
57 |