19 lines
275 B
PHP
19 lines
275 B
PHP
|
|
<?php namespace AhmadFatoni\ApiGenerator;
|
||
|
|
|
||
|
|
use System\Classes\PluginBase;
|
||
|
|
|
||
|
|
class Plugin extends PluginBase
|
||
|
|
{
|
||
|
|
public $require = [
|
||
|
|
'RainLab.Builder'
|
||
|
|
];
|
||
|
|
|
||
|
|
public function registerComponents()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
public function registerSettings()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|