16 lines
242 B
PHP
16 lines
242 B
PHP
<?php
|
|
|
|
namespace plugin\control\api;
|
|
|
|
use plugin\control\expose\api\Control as ApiControl;
|
|
|
|
class Control
|
|
{
|
|
use ApiControl;
|
|
public function __construct()
|
|
{
|
|
$this->path = __DIR__;
|
|
$this->plugin = 'control';
|
|
}
|
|
}
|