| 1 | <?php namespace Arcanesoft\Core\Bases; |
||
| 11 | abstract class PackageServiceProvider extends ServiceProvider |
||
| 12 | { |
||
| 13 | /* ------------------------------------------------------------------------------------------------ |
||
| 14 | | Properties |
||
| 15 | | ------------------------------------------------------------------------------------------------ |
||
| 16 | */ |
||
| 17 | /** |
||
| 18 | * Vendor name. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $vendor = 'arcanesoft'; |
||
| 23 | |||
| 24 | /* ------------------------------------------------------------------------------------------------ |
||
| 25 | | Getters & Setters |
||
| 26 | | ------------------------------------------------------------------------------------------------ |
||
| 27 | */ |
||
| 28 | /** |
||
| 29 | * Get config key. |
||
| 30 | * |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | protected function getConfigKey() |
||
| 37 | |||
| 38 | /* ------------------------------------------------------------------------------------------------ |
||
| 39 | | Other Functions |
||
| 40 | | ------------------------------------------------------------------------------------------------ |
||
| 41 | */ |
||
| 42 | /** |
||
| 43 | * Get the config repository instance. |
||
| 44 | * |
||
| 45 | * @return \Illuminate\Contracts\Config\Repository |
||
| 46 | */ |
||
| 47 | 8 | protected function config() |
|
| 51 | } |
||
| 52 |