1 | <?php |
||
10 | class FileWorkerConfiguration implements WorkerConfiguration { |
||
11 | /** @var Context */ |
||
12 | private $context; |
||
13 | /** @var RecursiveStringPath */ |
||
14 | private $recursiveAccessor; |
||
15 | /** @var ObjectProxyFactory */ |
||
16 | private $objectProxyFactory; |
||
17 | /** @var array */ |
||
18 | private $config; |
||
19 | |||
20 | /** |
||
21 | * @param Context $context |
||
22 | * @param RecursiveStringPath $recursiveAccessor |
||
23 | * @param ObjectProxyFactory $objectProxyFactory |
||
24 | * @param array $config |
||
25 | */ |
||
26 | public function __construct(Context $context = null, RecursiveStringPath $recursiveAccessor = null, ObjectProxyFactory $objectProxyFactory = null, array $config = []) { |
||
41 | |||
42 | /** |
||
43 | * @return Context |
||
44 | */ |
||
45 | public function getContext() { |
||
48 | |||
49 | /** |
||
50 | * @return RecursiveStringPath |
||
51 | */ |
||
52 | public function getRecursiveAccessor() { |
||
55 | |||
56 | /** |
||
57 | * @return ObjectProxyFactory |
||
58 | */ |
||
59 | public function getObjectProxyFactory() { |
||
62 | |||
63 | /** |
||
64 | * @return array |
||
65 | */ |
||
66 | public function getPaths() { |
||
72 | } |
||
73 |