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