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