| 1 | <?php namespace Arcanedev\Notify; |
||
| 11 | class StoreManager extends Manager |
||
| 12 | { |
||
| 13 | /* ----------------------------------------------------------------- |
||
| 14 | | Main Methods |
||
| 15 | | ----------------------------------------------------------------- |
||
| 16 | */ |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Get the default driver name. |
||
| 20 | * |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | 48 | public function getDefaultDriver() |
|
| 27 | |||
| 28 | /** |
||
| 29 | * Load the stores. |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | 48 | public function loadStores(): void |
|
| 47 | |||
| 48 | /* ----------------------------------------------------------------- |
||
| 49 | | Other Methods |
||
| 50 | | ----------------------------------------------------------------- |
||
| 51 | */ |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Get the config repository. |
||
| 55 | * |
||
| 56 | * @return \Illuminate\Contracts\Config\Repository |
||
| 57 | */ |
||
| 58 | 48 | protected function config() |
|
| 62 | } |
||
| 63 |