1 | <?php namespace Arcanesoft\Seo; |
||
12 | class SeoServiceProvider extends PackageServiceProvider |
||
13 | { |
||
14 | /* ------------------------------------------------------------------------------------------------ |
||
15 | | Properties |
||
16 | | ------------------------------------------------------------------------------------------------ |
||
17 | */ |
||
18 | /** |
||
19 | * Package name. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $package = 'seo'; |
||
24 | |||
25 | /* ------------------------------------------------------------------------------------------------ |
||
26 | | Getters & Setters |
||
27 | | ------------------------------------------------------------------------------------------------ |
||
28 | */ |
||
29 | /** |
||
30 | * Get the base path of the package. |
||
31 | * |
||
32 | * @return string |
||
33 | */ |
||
34 | 16 | public function getBasePath() |
|
38 | |||
39 | /* ------------------------------------------------------------------------------------------------ |
||
40 | | Main Functions |
||
41 | | ------------------------------------------------------------------------------------------------ |
||
42 | */ |
||
43 | /** |
||
44 | * Register the service provider. |
||
45 | */ |
||
46 | 16 | public function register() |
|
55 | |||
56 | /** |
||
57 | * Boot the service provider. |
||
58 | */ |
||
59 | 16 | public function boot() |
|
71 | |||
72 | /** |
||
73 | * Get the services provided by the provider. |
||
74 | * |
||
75 | * @return array |
||
76 | */ |
||
77 | 4 | public function provides() |
|
83 | |||
84 | /* ------------------------------------------------------------------------------------------------ |
||
85 | | Other Functions |
||
86 | | ------------------------------------------------------------------------------------------------ |
||
87 | */ |
||
88 | } |
||
89 |