| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class EventListenerTask implements TaskInterface |
||
| 13 | { |
||
| 14 | /** @var string */ |
||
| 15 | private $listenerName; |
||
| 16 | /** @var object */ |
||
| 17 | private $event; |
||
| 18 | |||
| 19 | 3 | public function __construct(string $listenerName, object $event) |
|
| 23 | } |
||
| 24 | |||
| 25 | 1 | public function run(ContainerInterface $container): void |
|
| 28 | } |
||
| 29 | |||
| 30 | 1 | public function toString(): string |
|
| 35 |