Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public function addDocument($token, $installation, $application, $category, $filename, $path) |
||
32 | { |
||
33 | return $this->postDocument( |
||
34 | '/v4/installations/' . $installation . '/applications/' . $application . '/supporting-documents', |
||
35 | [ |
||
36 | 'category' => $category, |
||
37 | 'filename' => $filename, |
||
38 | 'path' => $path, |
||
39 | |||
40 | ], |
||
41 | $token, |
||
42 | 'Supporting documents' |
||
43 | ); |
||
46 |