for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JMBTechnologyLimited\ICalDissect;
/**
*
* @link https://github.com/JMB-Technology-Limited/ICalDissect
* @license https://raw.github.com/JMB-Technology-Limited/ICalDissect/master/LICENSE.txt 3-clause BSD
* @copyright (c) 2014, JMB Technology Limited, http://jmbtechnology.co.uk/
* @author James Baster <[email protected]>
*/
class ICalExDate
{
protected $properties;
protected $values;
function __construct($values, $properties)
$this->properties = $properties;
$this->values = $values;
}
* @return mixed
public function getProperties()
return $this->properties;
public function getValues()
return $this->values;