Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
57 | public function init(string $raw): iDokladModelInterface |
||
58 | { |
||
59 | $this->content = base64_decode($raw); |
||
60 | |||
61 | $temp = sprintf('%s/%s', sys_get_temp_dir(), bin2hex(random_bytes(10))); |
||
62 | file_put_contents($temp, $this->content); |
||
63 | |||
64 | $this->mime = mime_content_type($temp); |
||
65 | @unlink($temp); |
||
|
|||
66 | |||
67 | return $this; |
||
68 | } |
||
69 | |||
86 |
If you suppress an error, we recommend checking for the error condition explicitly: