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