1 | <?php |
||
18 | trait ProvidesLifeCycleNotifier |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * @var \cloak\LifeCycleNotifier |
||
23 | */ |
||
24 | protected $notifier; |
||
25 | |||
26 | |||
27 | /** |
||
28 | * @param \cloak\LifeCycleNotifier $notifier |
||
29 | * @return $this |
||
30 | */ |
||
31 | public function setLifeCycleNotifier(LifeCycleNotifier $notifier) |
||
36 | |||
37 | /** |
||
38 | * @return \cloak\LifeCycleNotifier |
||
39 | */ |
||
40 | public function getLifeCycleNotifier() |
||
46 | |||
47 | } |
||
48 |