1 | <?php |
||
15 | class BasicWorkflowContext implements WorkflowContextInterface |
||
16 | { |
||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $caller; |
||
21 | |||
22 | /** |
||
23 | * @param $caller |
||
24 | */ |
||
25 | 19 | public function __construct($caller) |
|
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | 5 | public function getCaller() |
|
37 | |||
38 | /** |
||
39 | * |
||
40 | * @return void |
||
41 | */ |
||
42 | 3 | public function setRollbackOnly() |
|
46 | } |
||
47 |