| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class RowEventFactory |
||
| 13 | { |
||
| 14 | private $rowEventBuilder; |
||
| 15 | |||
| 16 | 58 | public function __construct( |
|
| 17 | Config $config, |
||
| 18 | RepositoryInterface $repository, |
||
| 19 | CacheInterface $cache |
||
| 20 | ) { |
||
| 21 | 58 | $this->rowEventBuilder = new RowEventBuilder($config, $repository, $cache); |
|
| 22 | } |
||
| 23 | |||
| 24 | 54 | public function makeRowEvent(BinaryDataReader $package, EventInfo $eventInfo): RowEvent |
|
| 30 | } |
||
| 31 | } |
||
| 32 |