diff options
Diffstat (limited to 'source/Command/CommandInterface.php')
-rw-r--r-- | source/Command/CommandInterface.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/source/Command/CommandInterface.php b/source/Command/CommandInterface.php new file mode 100644 index 0000000..afd9908 --- /dev/null +++ b/source/Command/CommandInterface.php @@ -0,0 +1,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(); +}
\ No newline at end of file |