24 lines
393 B
PHP
24 lines
393 B
PHP
<?php namespace GermanAirlinesVa\Schooling;
|
|
|
|
use Config;
|
|
use System\Classes\PluginBase;
|
|
|
|
class Plugin extends PluginBase
|
|
{
|
|
public function registerComponents()
|
|
{
|
|
}
|
|
|
|
public function registerSettings()
|
|
{
|
|
}
|
|
|
|
public function boot()
|
|
{
|
|
Config::set(
|
|
'database.connections.germanairlinesva_schooling',
|
|
Config::get('germanairlinesva.schooling::connection')
|
|
);
|
|
}
|
|
}
|