| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class EventPoolFactory |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param string $eventName |
||
| 14 | * @param ThreadPool|AbstractThreadPoolMediator $pool |
||
| 15 | * @param AbstractThread|null $thread |
||
| 16 | * @return PoolEvent |
||
| 17 | */ |
||
| 18 | public static function create(string $eventName, AbstractThreadPoolMediator $pool, ?AbstractThread $thread = null): PoolEvent |
||
| 31 |