| 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 | public function execute($context, $callback) |
||
| 30 | |||
| 31 | 4 | public function reset($context = []) : self |
|
| 40 | |||
| 41 | 4 | public function apply($data) : self |
|
| 52 | |||
| 53 | 2 | public function getPerson() |
|
| 57 | |||
| 58 | 3 | public function toArray(): array |
|
| 80 | } |
||
| 81 |