| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 14 | public function __construct($name, $md5, $path, $executionDate = null, $status = 0, $executionError = null, $signalName = null) |
||
| 15 | { |
||
| 16 | $this->name = $name; |
||
|
|
|||
| 17 | $this->md5 = $md5; |
||
| 18 | $this->path = $path; |
||
| 19 | $this->executionDate = $executionDate; |
||
| 20 | $this->status = $status; |
||
| 21 | $this->executionError = $executionError; |
||
| 22 | $this->signalName = $signalName; |
||
| 23 | } |
||
| 25 |