1 | <?php namespace Arcanedev\Taxonomies; |
||
11 | class TaxonomiesServiceProvider extends ServiceProvider |
||
12 | { |
||
13 | /* ------------------------------------------------------------------------------------------------ |
||
14 | | Properties |
||
15 | | ------------------------------------------------------------------------------------------------ |
||
16 | */ |
||
17 | /** |
||
18 | * Package name. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $package = 'taxonomies'; |
||
23 | |||
24 | /** |
||
25 | * Indicates if loading of the provider is deferred. |
||
26 | * |
||
27 | * @var bool |
||
28 | */ |
||
29 | protected $defer = false; |
||
30 | |||
31 | /* ------------------------------------------------------------------------------------------------ |
||
32 | | Getters & Setters |
||
33 | | ------------------------------------------------------------------------------------------------ |
||
34 | */ |
||
35 | /** |
||
36 | * Get the base path of the package. |
||
37 | * |
||
38 | * @return string |
||
39 | */ |
||
40 | 27 | public function getBasePath() |
|
44 | |||
45 | /* ------------------------------------------------------------------------------------------------ |
||
46 | | Main Functions |
||
47 | | ------------------------------------------------------------------------------------------------ |
||
48 | */ |
||
49 | /** |
||
50 | * Register the service provider. |
||
51 | */ |
||
52 | 27 | public function register() |
|
56 | |||
57 | /** |
||
58 | * Bootstrap the application events. |
||
59 | */ |
||
60 | 27 | public function boot() |
|
67 | |||
68 | /** |
||
69 | * Get the services provided by the provider. |
||
70 | * |
||
71 | * @return array |
||
72 | */ |
||
73 | 9 | public function provides() |
|
79 | } |
||
80 |