| Total Complexity | 4 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | final class ChannelsBuilder extends AbstractBuilder |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | private $channelsProperty; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string $channelsProperty |
||
| 27 | */ |
||
| 28 | public function __construct(string $channelsProperty) |
||
| 29 | { |
||
| 30 | $this->channelsProperty = $channelsProperty; |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param TransformEvent $event |
||
| 35 | */ |
||
| 36 | public function buildProperty(TransformEvent $event): void |
||
| 52 | } |
||
| 53 | } |
||
| 54 |