Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
49 | public function __construct( |
||
50 | UUID $fileId, |
||
51 | MIMEType $mimeType, |
||
52 | StringLiteral $description, |
||
53 | StringLiteral $copyrightHolder, |
||
54 | StringLiteral $filePath, |
||
55 | Language $language |
||
56 | ) { |
||
57 | $this->fileId = $fileId; |
||
58 | $this->description = $description; |
||
59 | $this->copyrightHolder = $copyrightHolder; |
||
60 | $this->mimeType = $mimeType; |
||
61 | $this->filePath = $filePath; |
||
62 | $this->language = $language; |
||
63 | } |
||
64 | |||
113 |