| 1 | <?php |
||
| 15 | class CallerEvent extends Event |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | const EVENT_RESOLVE_CALLER = 'workflow.basic.resolve.caller'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string|null |
||
| 24 | */ |
||
| 25 | protected $caller; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return null|string |
||
| 29 | */ |
||
| 30 | public function getCaller() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param null|string $caller |
||
| 37 | * |
||
| 38 | * @return $this |
||
| 39 | */ |
||
| 40 | public function setCaller($caller) |
||
| 46 | } |
||
| 47 |