1 | <?php |
||
9 | class SqliteBuilder { |
||
10 | /** @var string */ |
||
11 | private $filename; |
||
12 | /** @var MethodInvoker|null */ |
||
13 | private $methodInvoker; |
||
14 | |||
15 | /** |
||
16 | * @param string $filename |
||
17 | */ |
||
18 | public function __construct(string $filename) { |
||
21 | |||
22 | /** |
||
23 | * This can be used to enable automatic provisioning of DI objects when service methods are called. (Autowiring) |
||
24 | * |
||
25 | * @param MethodInvoker|null $methodInvoker |
||
26 | * @return $this |
||
27 | */ |
||
28 | public function setMethodInvoker(MethodInvoker $methodInvoker = null): self { |
||
32 | |||
33 | /** |
||
34 | * @return DefaultDispatcher |
||
35 | */ |
||
36 | public function build(): DefaultDispatcher { |
||
41 | } |