| 1 | <?php |
||
| 17 | class BirdInCageEvent extends Event |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var HoneypotPreyInterface |
||
| 21 | */ |
||
| 22 | protected $prey; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Class constructor |
||
| 26 | * |
||
| 27 | * @param HoneypotPreyInterface $prey |
||
| 28 | */ |
||
| 29 | public function __construct(HoneypotPreyInterface $prey) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return HoneypotPreyInterface |
||
| 36 | */ |
||
| 37 | public function getPrey() |
||
| 41 | } |
||
| 42 |