Completed
Push — master ( 19a7d3...6b997b )
by Tim
13:45
created

ICalExDate   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 31
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 3
c 0
b 0
f 0
lcom 0
cbo 0
dl 0
loc 31
rs 10
1
<?php
2
3
namespace JMBTechnologyLimited\ICalDissect;
4
5
/**
6
 *
7
 * @link https://github.com/JMB-Technology-Limited/ICalDissect
8
 * @license https://raw.github.com/JMB-Technology-Limited/ICalDissect/master/LICENSE.txt 3-clause BSD
9
 * @copyright (c) 2014, JMB Technology Limited, http://jmbtechnology.co.uk/
10
 * @author James Baster <[email protected]>
11
 */
12
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