21 lines
363 B
PHP
21 lines
363 B
PHP
<?php namespace GermanAirlinesVa\Fleet;
|
|
|
|
use Config;
|
|
use System\Classes\PluginBase;
|
|
|
|
class Plugin extends PluginBase
|
|
{
|
|
public function registerComponents()
|
|
{
|
|
}
|
|
|
|
public function registerSettings()
|
|
{
|
|
}
|
|
|
|
public function boot()
|
|
{
|
|
Config::set('database.connections.germanairlinesva_fleet', Config::get('germanairlinesva.fleet::connection'));
|
|
}
|
|
}
|