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