1 | <?php |
||
13 | trait ExecutorAwareTrait |
||
14 | { |
||
15 | /** |
||
16 | * Executor для фикстур |
||
17 | * |
||
18 | * @var ExecutorInterface |
||
19 | */ |
||
20 | protected $executor; |
||
21 | |||
22 | /** |
||
23 | * @inheritdoc |
||
24 | * |
||
25 | * @return ExecutorInterface |
||
26 | * |
||
27 | * @throws Exception\RuntimeException |
||
28 | */ |
||
29 | public function getExecutor() |
||
37 | |||
38 | /** |
||
39 | * @inheritdoc |
||
40 | * |
||
41 | * @param ExecutorInterface $executor |
||
42 | * |
||
43 | * @return $this |
||
44 | */ |
||
45 | public function setExecutor(ExecutorInterface $executor) |
||
51 | } |
||
52 |