16 lines
141 B
PHP
16 lines
141 B
PHP
<?php
|
|
|
|
|
|
namespace Kiri\Abstracts;
|
|
|
|
|
|
interface Kernel
|
|
{
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getCommands(): array;
|
|
|
|
}
|