1 | <?php namespace Arcanesoft\Media; |
||
12 | class MediaServiceProvider extends PackageServiceProvider |
||
13 | { |
||
14 | /* ------------------------------------------------------------------------------------------------ |
||
15 | | Properties |
||
16 | | ------------------------------------------------------------------------------------------------ |
||
17 | */ |
||
18 | /** |
||
19 | * Package name. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $package = 'media'; |
||
24 | |||
25 | /* ------------------------------------------------------------------------------------------------ |
||
26 | | Getters & Setters |
||
27 | | ------------------------------------------------------------------------------------------------ |
||
28 | */ |
||
29 | /** |
||
30 | * Get the base path of the package. |
||
31 | * |
||
32 | * @return string |
||
33 | */ |
||
34 | 4 | public function getBasePath() |
|
38 | |||
39 | /* ------------------------------------------------------------------------------------------------ |
||
40 | | Main Functions |
||
41 | | ------------------------------------------------------------------------------------------------ |
||
42 | */ |
||
43 | /** |
||
44 | * Register the service provider. |
||
45 | */ |
||
46 | 4 | public function register() |
|
60 | |||
61 | 4 | private function syncFilesystemConfig() |
|
67 | |||
68 | /** |
||
69 | * Boot the service provider. |
||
70 | */ |
||
71 | 4 | public function boot() |
|
81 | |||
82 | /** |
||
83 | * Get the services provided by the provider. |
||
84 | * |
||
85 | * @return array |
||
86 | */ |
||
87 | 2 | public function provides() |
|
93 | } |
||
94 |