| 1 | <?php |
||
| 7 | trait AsyncEventEmitterTrait |
||
| 8 | { |
||
| 9 | use LoopAwareTrait; |
||
| 10 | use BaseEventEmitterTrait; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @see BaseEventEmitterTrait::attachOnListener |
||
| 14 | */ |
||
| 15 | 28 | protected function attachOnListener($pointer, $event, callable $listener) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @see BaseEventEmitterTrait::attachOnceListener |
||
| 27 | */ |
||
| 28 | 6 | protected function attachOnceListener($pointer, $event, callable $listener) |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @see BaseEventEmitterTrait::attachTimesListener |
||
| 42 | */ |
||
| 43 | 14 | protected function attachTimesListener($pointer, $event, $limit, callable $listener) |
|
| 59 | } |
||
| 60 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.