Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
39 | public function __construct( |
||
40 | UploadedFile $uploadedFile, string $name, bool $uploaded, $details = null, $exception = null) |
||
41 | { |
||
42 | $this->uploadedFile = $uploadedFile; |
||
43 | $this->name = $name; |
||
44 | $this->uploaded = $uploaded; |
||
45 | $this->details = $details; |
||
46 | $this->exception = $exception; |
||
47 | } |
||
99 |