20 lines
248 B
PHP
20 lines
248 B
PHP
<?php namespace GermanAirlinesVa\React;
|
|
|
|
use Config;
|
|
use System\Classes\PluginBase;
|
|
|
|
class Plugin extends PluginBase
|
|
{
|
|
public function registerComponents()
|
|
{
|
|
}
|
|
|
|
public function registerSettings()
|
|
{
|
|
}
|
|
|
|
public function boot()
|
|
{
|
|
}
|
|
}
|