Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
66 | 2 | public function __construct($id, $name = null, $description = null, $type = null, $tag = null) |
|
67 | { |
||
68 | 2 | $now = new \DateTime(); |
|
69 | 2 | $this->ID = $id; |
|
70 | 2 | $this->Name = $name; |
|
71 | 2 | $this->Description = $description; |
|
72 | 2 | $this->CreatedDate = $now->format(self::$datetime_format); |
|
73 | 2 | $this->ModifiedDate = null; |
|
74 | 2 | $this->Type = $type; |
|
75 | 2 | $this->Tag = $tag; |
|
76 | 2 | } |
|
77 | |||
138 |