| Total Complexity | 6 |
| Total Lines | 75 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class BlueprintsServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Indicates if loading of the provider is deferred. |
||
| 11 | * |
||
| 12 | * @var bool |
||
| 13 | */ |
||
| 14 | protected $defer = true; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Register the service provider. |
||
| 18 | * |
||
| 19 | * @return void |
||
| 20 | */ |
||
| 21 | public function register() |
||
| 22 | { |
||
| 23 | // |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Bootstrap the application events. |
||
| 28 | * |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | public function boot() |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Publishes the Configuration File. |
||
| 39 | * |
||
| 40 | * @return void |
||
| 41 | */ |
||
| 42 | protected function publishConfigurationFile() |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Returns the Path to the Configuration File within this Package. |
||
| 56 | * |
||
| 57 | * @return string |
||
| 58 | */ |
||
| 59 | protected function getLocalConfigurationPath() |
||
| 60 | { |
||
| 61 | return __DIR__ . '/../config/blueprints.php'; |
||
| 62 | } |
||
| 63 | |||
| 64 | /** |
||
| 65 | * Returns the Path to the Configuration File within the Application. |
||
| 66 | * |
||
| 67 | * @return string |
||
| 68 | */ |
||
| 69 | protected function getApplicationConfigPath() |
||
| 70 | { |
||
| 71 | return config_path('blueprints.php'); |
||
|
|
|||
| 72 | } |
||
| 73 | |||
| 74 | /** |
||
| 75 | * Get the services provided by the provider. |
||
| 76 | * |
||
| 77 | * @return array |
||
| 78 | */ |
||
| 79 | public function provides() |
||
| 82 | // |
||
| 83 | ]; |
||
| 84 | } |
||
| 85 | } |
||
| 86 |