Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | class ChannelEntity extends MessageEntity |
||
31 | { |
||
32 | /** @var string $name */ |
||
33 | protected $name; |
||
34 | |||
35 | /** @var string $type */ |
||
36 | protected $type; |
||
37 | |||
38 | /** @var string $source */ |
||
39 | protected $source; |
||
40 | |||
41 | /** @var integer channelSetId */ |
||
42 | protected $channelSetId; |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | public function toArray($object = null) |
||
52 |