1 | <?php |
||
12 | class MultiStepManager |
||
13 | { |
||
14 | protected $app; |
||
15 | |||
16 | /** |
||
17 | * The array of resolved filesystem drivers. |
||
18 | * |
||
19 | * @var array |
||
20 | */ |
||
21 | protected $disks = []; |
||
22 | |||
23 | public function __construct($app) |
||
27 | |||
28 | public function disk($name = null) |
||
34 | |||
35 | protected function get($name) |
||
39 | |||
40 | protected function resolve($name) |
||
55 | |||
56 | protected function getConfig() |
||
60 | |||
61 | protected function createSessionDriver($config) |
||
65 | |||
66 | protected function createDatabaseDriver($config) |
||
70 | |||
71 | protected function createJsonDriver() |
||
75 | |||
76 | protected function createStepSystem(StepStorage $stepStorage) |
||
80 | |||
81 | /** |
||
82 | * Get the default file driver. |
||
83 | * |
||
84 | * @return string |
||
85 | */ |
||
86 | protected function getDefaultDriver() |
||
90 | |||
91 | /** |
||
92 | * Dynamically call the default driver instance. |
||
93 | * |
||
94 | * @param string $method |
||
95 | * @param array $parameters |
||
96 | * @return mixed |
||
97 | */ |
||
98 | public function __call($method, $parameters) |
||
102 | } |
||
103 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.