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