14 lines
171 B
PHP
14 lines
171 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KTXF\Module;
|
|
|
|
/**
|
|
* Module Console Interface
|
|
*/
|
|
interface ModuleConsoleInterface
|
|
{
|
|
public function registerCI(): array;
|
|
}
|