1: <?php
2:
3: namespace webfilesframework\core\time;
4:
5: /**
6: * description
7: *
8: * @author Sebastian Monzel < mail@sebastianmonzel.de >
9: * @since 0.1.7
10: */
11: class MTimespan
12: {
13:
14: private $start;
15: private $end;
16:
17: public function __construct($start, $end)
18: {
19: $this->start = $start;
20: $this->end = $end;
21: }
22:
23: public function getStart()
24: {
25: return $this->start;
26: }
27:
28: public function setStart($start)
29: {
30: $this->start = $start;
31: }
32:
33: public function getEnd()
34: {
35: return $this->end;
36: }
37:
38: public function setEnd($end)
39: {
40: $this->end = $end;
41: }
42:
43: }