diff options
Diffstat (limited to 'source/Command/Channel/CommandInterface.php')
-rw-r--r-- | source/Command/Channel/CommandInterface.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/source/Command/Channel/CommandInterface.php b/source/Command/Channel/CommandInterface.php new file mode 100644 index 0000000..72af707 --- /dev/null +++ b/source/Command/Channel/CommandInterface.php @@ -0,0 +1,21 @@ +<?php +/** + * @author stev leibelt <artodeto@bazzline.net> + * @since 2014-08-14 + */ + +/** + * Interface Command_Channel_CommandInterface + */ +interface Command_Channel_CommandInterface extends Command_CommandInterface +{ + /** + * @param array $channels + */ + public function setChannels(array $channels); + + /** + * @param File $file + */ + public function setChannelFile(File $file); +}
\ No newline at end of file |