| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| 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 | } |
||
| 49 |