1 | <?php namespace Arcanedev\LaravelExcel; |
||
11 | abstract class AbstractManager extends Manager |
||
12 | { |
||
13 | /* ----------------------------------------------------------------- |
||
14 | | Getters & Setters |
||
15 | | ----------------------------------------------------------------- |
||
16 | */ |
||
17 | |||
18 | /** |
||
19 | * Get the default driver name. |
||
20 | * |
||
21 | * @return string |
||
22 | */ |
||
23 | 3 | public function getDefaultDriver() |
|
27 | |||
28 | /* ----------------------------------------------------------------- |
||
29 | | Other Methods |
||
30 | | ----------------------------------------------------------------- |
||
31 | */ |
||
32 | |||
33 | /** |
||
34 | * Get the driver options. |
||
35 | * |
||
36 | * @param string $driver |
||
37 | * |
||
38 | * @return array |
||
39 | */ |
||
40 | 21 | protected function getDriverOptions($driver) |
|
44 | } |
||
45 |