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