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