ControllerInterface
last analyzed

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
1
<?php
2
namespace Redaxscript\Admin\Controller;
3
4
use Redaxscript\Controller\ControllerInterface as BaseControllerInterface;
5
6
/**
7
 * interface to define a admin controller class
8
 *
9
 * @since 4.0.0
10
 *
11
 * @package Redaxscript
12
 * @category Controller
13
 * @author Henry Ruhs
14
 */
15
16
interface ControllerInterface extends BaseControllerInterface
17
{
18
}
19