Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
39 | 45 | public function __construct($name, $md5, $path, $executionDate = null, $status = 0, $executionError = null) |
|
40 | { |
||
41 | 45 | $this->name = $name; |
|
42 | 45 | $this->md5 = $md5; |
|
43 | 45 | $this->path = $path; |
|
44 | 45 | $this->executionDate = $executionDate; |
|
45 | 45 | $this->status = $status; |
|
46 | 45 | $this->executionError = $executionError; |
|
47 | 45 | } |
|
48 | } |
||
49 |