| 1 | <?php |
||
| 13 | class ICalExDate |
||
| 14 | { |
||
| 15 | |||
| 16 | protected $properties; |
||
| 17 | protected $values; |
||
| 18 | |||
| 19 | function __construct($values, $properties) |
||
| 20 | { |
||
| 21 | $this->properties = $properties; |
||
| 22 | $this->values = $values; |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return mixed |
||
| 27 | */ |
||
| 28 | public function getProperties() |
||
| 29 | { |
||
| 30 | return $this->properties; |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return mixed |
||
| 35 | */ |
||
| 36 | public function getValues() |
||
| 37 | { |
||
| 38 | return $this->values; |
||
| 39 | } |
||
| 40 | |||
| 41 | |||
| 42 | |||
| 43 | } |
||
| 44 |