bbec276da8
* #355 Calculate distance button in add/edit Flight page * Styling * Move add/edit flight logic out of controller and into service layer * Styling * Formatting * Run styleci against modules dir * Styleci config * Style fixes in /modules
35 lines
698 B
PHP
35 lines
698 B
PHP
<?php
|
|
|
|
namespace Modules\Vacentral\Providers;
|
|
|
|
use App\Services\ModuleService;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
protected $moduleSvc;
|
|
|
|
/**
|
|
* Boot the application events.
|
|
*/
|
|
public function boot()
|
|
{
|
|
$this->moduleSvc = app(ModuleService::class);
|
|
$this->registerConfig();
|
|
}
|
|
|
|
/**
|
|
* Register config.
|
|
*/
|
|
protected function registerConfig()
|
|
{
|
|
$this->publishes([
|
|
__DIR__.'/../Config/config.php' => config_path('vacentral.php'),
|
|
], 'config');
|
|
|
|
$this->mergeConfigFrom(
|
|
__DIR__.'/../Config/config.php', 'vacentral'
|
|
);
|
|
}
|
|
}
|