Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
44 | 108 | public function __construct($name, $md5, $path, $executionDate = null, $status = 0, $executionError = null) |
|
45 | { |
||
46 | 108 | $this->name = $name; |
|
|
|||
47 | 108 | $this->md5 = $md5; |
|
48 | 108 | $this->path = $path; |
|
49 | 108 | $this->executionDate = $executionDate; |
|
50 | 108 | $this->status = $status; |
|
51 | 108 | $this->executionError = $executionError; |
|
52 | 108 | } |
|
54 |