1 | <?php |
||
19 | class RemoveFinishedSocketsEventHandler implements EventHandlerInterface |
||
20 | { |
||
21 | /** |
||
22 | * Target handler |
||
23 | * |
||
24 | * @var EventHandlerInterface |
||
25 | */ |
||
26 | private $handler; |
||
27 | |||
28 | /** |
||
29 | * RemoveFinishedSocketsEventHandler constructor. |
||
30 | * |
||
31 | * @param EventHandlerInterface $handler Original event handler |
||
32 | */ |
||
33 | 5 | public function __construct(EventHandlerInterface $handler = null) |
|
37 | |||
38 | /** {@inheritdoc} */ |
||
39 | 5 | public function invokeEvent( |
|
56 | } |
||
57 |