| 1 | <?php |
||
| 7 | class Filter |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | public $name; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | public $type; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | public $decision; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var DateTime |
||
| 26 | */ |
||
| 27 | public $start; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var DateTime |
||
| 31 | */ |
||
| 32 | public $end; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | 3 | public function getName() |
|
| 41 | |||
| 42 | /** |
||
| 43 | * @param string $name |
||
| 44 | */ |
||
| 45 | public function setName(string $name) |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return string |
||
| 52 | */ |
||
| 53 | 2 | public function getType() |
|
| 54 | { |
||
| 55 | 2 | return $this->type; |
|
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @param string $type |
||
| 60 | */ |
||
| 61 | public function setType(string $type) |
||
| 65 | |||
| 66 | /** |
||
| 67 | * @return string |
||
| 68 | */ |
||
| 69 | public function getDecision() |
||
| 73 | |||
| 74 | /** |
||
| 75 | * @param string $decision |
||
| 76 | */ |
||
| 77 | public function setDecision(string $decision) |
||
| 81 | |||
| 82 | /** |
||
| 83 | * @return DateTime |
||
| 84 | */ |
||
| 85 | 2 | public function getStart() |
|
| 86 | { |
||
| 87 | 2 | return $this->start; |
|
| 88 | } |
||
| 89 | |||
| 90 | /** |
||
| 91 | * @param DateTime $start |
||
| 92 | */ |
||
| 93 | public function setStart($start) |
||
| 97 | |||
| 98 | /** |
||
| 99 | * @return DateTime |
||
| 100 | */ |
||
| 101 | 2 | public function getEnd() |
|
| 102 | { |
||
| 103 | 2 | return $this->end; |
|
| 104 | } |
||
| 105 | |||
| 106 | /** |
||
| 107 | * @param DateTime $end |
||
| 108 | */ |
||
| 109 | public function setEnd($end) |
||
| 113 | } |
||
| 114 |