blob: 42b6836a55f8655273f0a3375930e2eeb97c7d8f (
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
27
28
29
30
31
32
33
34
35
36
37
|
<?php
/**
* @author stev leibelt <artodeto@bazzline.net>
* @since 2014-08-14
*/
/**
* Class Command_Channel_AbstractCommand
*/
abstract class Command_Channel_AbstractCommand extends Command_AbstractCommand implements Command_Channel_CommandInterface
{
/**
* @var File
*/
protected $file;
/**
* @var array
*/
protected $channels;
/**
* @param array $channels
*/
public function setChannels(array $channels)
{
$this->channels = $channels;
}
/**
* @param File $file
*/
public function setChannelFile(File $file)
{
$this->file = $file;
}
}
|