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