| 1 | <?php namespace Arcanedev\Currencies; |
||
| 11 | class CurrenciesServiceProvider extends PackageServiceProvider |
||
| 12 | { |
||
| 13 | /* ------------------------------------------------------------------------------------------------ |
||
| 14 | | Properties |
||
| 15 | | ------------------------------------------------------------------------------------------------ |
||
| 16 | */ |
||
| 17 | /** |
||
| 18 | * Vendor name. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $vendor = 'arcanedev'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Package name. |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | protected $package = 'currencies'; |
||
| 30 | |||
| 31 | /* ------------------------------------------------------------------------------------------------ |
||
| 32 | | Getters & Setters |
||
| 33 | | ------------------------------------------------------------------------------------------------ |
||
| 34 | */ |
||
| 35 | /** |
||
| 36 | * Get the base path of the package. |
||
| 37 | * |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | 468 | public function getBasePath() |
|
| 44 | |||
| 45 | /* ------------------------------------------------------------------------------------------------ |
||
| 46 | | Main Functions |
||
| 47 | | ------------------------------------------------------------------------------------------------ |
||
| 48 | */ |
||
| 49 | /** |
||
| 50 | * Register the service provider. |
||
| 51 | */ |
||
| 52 | 468 | public function register() |
|
| 59 | |||
| 60 | /** |
||
| 61 | * Boot the service provider. |
||
| 62 | */ |
||
| 63 | 468 | public function boot() |
|
| 71 | } |
||
| 72 |