1 | <?php |
||
5 | trait LoopAwareTrait |
||
6 | { |
||
7 | /** |
||
8 | * @var LoopInterface|null |
||
9 | */ |
||
10 | protected $loop = null; |
||
11 | |||
12 | /** |
||
13 | * @see LoopAwareInterface::setLoop |
||
14 | */ |
||
15 | 1 | public function setLoop(LoopInterface $loop = null) |
|
19 | |||
20 | /** |
||
21 | * @see LoopAwareInterface::getLoop |
||
22 | */ |
||
23 | 2 | public function getLoop() |
|
27 | } |
||
28 |