| 1 | <?php |
||
| 7 | class Context |
||
| 8 | { |
||
| 9 | public $access; |
||
| 10 | public $channel; |
||
| 11 | public $session; |
||
| 12 | |||
| 13 | public $company; |
||
| 14 | public $person; |
||
| 15 | public $module; |
||
| 16 | |||
| 17 | public $parent; |
||
| 18 | public $event; |
||
| 19 | |||
| 20 | 4 | public function reset($context = []) : self |
|
| 29 | |||
| 30 | 4 | public function apply($data) : self |
|
| 41 | |||
| 42 | 2 | public function getPerson() |
|
| 46 | |||
| 47 | 3 | public function toArray(): array |
|
| 69 | } |
||
| 70 |