| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | final class ChannelsAssigner implements ChannelsAssignerInterface |
||
| 19 | { |
||
| 20 | /** @var ChannelRepositoryInterface */ |
||
| 21 | private $channelRepository; |
||
| 22 | |||
| 23 | public function __construct(ChannelRepositoryInterface $channelRepository) |
||
| 24 | { |
||
| 25 | $this->channelRepository = $channelRepository; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function assign(ChannelsAwareInterface $channelsAware, array $channelsCodes): void |
||
| 36 | } |
||
| 37 | } |
||
| 39 |