| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 69 | public function __construct(string $filePath, string $name, $size, string $type, ?string $error = null, ?int $index = null, ?array $contentRange = null) |
||
| 70 | { |
||
| 71 | $this->filePath = $filePath; |
||
| 72 | $this->name = $name; |
||
| 73 | $this->size = $size; |
||
| 74 | $this->type = $type; |
||
| 75 | $this->error = $error; |
||
| 76 | $this->index = $index; |
||
| 77 | $this->contentRange = $contentRange; |
||
| 78 | } |
||
| 79 | } |
||
| 80 |