Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
55 | public function upload($type, $file, $description = '') |
||
56 | { |
||
57 | $data = [ |
||
58 | [ |
||
59 | 'name' => 'type', |
||
60 | 'contents' => $type, |
||
61 | ], |
||
62 | [ |
||
63 | 'name' => 'description', |
||
64 | 'contents' => $description, |
||
65 | ], |
||
66 | [ |
||
67 | 'name' => 'file', |
||
68 | 'contents' => fopen($file, 'r'), |
||
69 | ], |
||
70 | ]; |
||
71 | |||
72 | return $this->postResourceFile('', $data); |
||
73 | } |
||
74 | } |