blob: afd99084ae779dfb48828f285852ce9fb18916ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
/**
* @author stev leibelt <artodeto@bazzline.net>
* @since 2014-08-13
*/
/**
* Interface Command_CommandInterface
*/
interface Command_CommandInterface extends InputDependentInterface, OutputDependentInterface
{
/**
* @throws Exception
*/
public function execute();
/**
* @return array
*/
public function getUsage();
/**
* @throws Exception
*/
public function verify();
}
|