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