| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | 325 | public function __construct($path, $name, $size, $time, $mode, callable $aclCallback) { |
|
| 53 | 325 | $this->path = $path; |
|
| 54 | 325 | $this->name = $name; |
|
| 55 | 325 | $this->size = $size; |
|
| 56 | 325 | $this->time = $time; |
|
| 57 | 325 | $this->mode = $mode; |
|
| 58 | 325 | $this->aclCallback = $aclCallback; |
|
| 59 | 325 | } |
|
| 60 | |||
| 131 |