| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 53 | public function uploadString($index, $filename, $string) |
||
| 54 | { |
||
| 55 | $targetDir = "{$this->url}/config/$index"; |
||
| 56 | |||
| 57 | file_get_contents($targetDir . '/' . $filename, false, stream_context_create([ |
||
| 58 | 'http' => [ |
||
| 59 | 'method' => 'POST', |
||
| 60 | 'header' => 'Content-type: application/octet-stream', |
||
| 61 | 'content' => (string) $string |
||
| 62 | ] |
||
| 75 |