blob: 649a095d2a82512ad508955c4b2ccbb6a00b2999 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
namespace PHPIAC\Module;
interface ModuleInterface
{
/**
* @return bool
*/
public function checkState(): bool;
/**
* @return array
*/
public function getCommands(): array;
}
|