summaryrefslogtreecommitdiffstats
path: root/source/Command/Channel/CommandInterface.php
blob: 72af7078a03cd7a9b983a727884cecbbc7ba5504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
}