| Conditions | 2 |
| Paths | 2 |
| Total Lines | 19 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | private function buildRequestParams(\SplFileObject $file, array $options) |
||
| 46 | { |
||
| 47 | $multipart = [ |
||
| 48 | [ |
||
| 49 | 'name' =>'batch', |
||
| 50 | 'contents' => $file, |
||
| 51 | 'filename' => $file->getFilename() |
||
| 52 | ] |
||
| 53 | ]; |
||
| 54 | |||
| 55 | foreach ($options as $key => $value) { |
||
| 56 | $multipart[] = [ |
||
| 57 | 'name' => $key, |
||
| 58 | 'contents' => $value |
||
| 59 | ]; |
||
| 60 | } |
||
| 61 | |||
| 62 | return compact('multipart'); |
||
| 63 | } |
||
| 64 | } |
||
| 65 |