| 1 | <?php namespace Arcanedev\Currencies; |
||
| 11 | class CurrenciesServiceProvider extends PackageServiceProvider |
||
| 12 | { |
||
| 13 | /* ------------------------------------------------------------------------------------------------ |
||
| 14 | | Properties |
||
| 15 | | ------------------------------------------------------------------------------------------------ |
||
| 16 | */ |
||
| 17 | /** |
||
| 18 | * Package name. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $package = 'currencies'; |
||
| 23 | |||
| 24 | /* ------------------------------------------------------------------------------------------------ |
||
| 25 | | Getters & Setters |
||
| 26 | | ------------------------------------------------------------------------------------------------ |
||
| 27 | */ |
||
| 28 | /** |
||
| 29 | * Get the base path of the package. |
||
| 30 | * |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | public function getBasePath() |
||
| 37 | |||
| 38 | /* ------------------------------------------------------------------------------------------------ |
||
| 39 | | Main Functions |
||
| 40 | 612 | | ------------------------------------------------------------------------------------------------ |
|
| 41 | */ |
||
| 42 | 612 | /** |
|
| 43 | * Register the service provider. |
||
| 44 | */ |
||
| 45 | public function register() |
||
| 52 | 612 | ||
| 53 | /** |
||
| 54 | 612 | * Boot the service provider. |
|
| 55 | */ |
||
| 56 | 612 | public function boot() |
|
| 64 | } |
||
| 65 |