| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2.0116 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | 8 | public function delete() |
|
| 39 | { |
||
| 40 | 8 | if (! $this->tileset) { |
|
| 41 | throw new RunTimeException('Tileset name required'); |
||
| 42 | } |
||
| 43 | |||
| 44 | 8 | $url = $this->url(Mapbox::TILESETS_ENDPOINT); |
|
| 45 | 8 | [$url_before, $url_after] = explode('?', $url); |
|
| 46 | 8 | $url = $url_before . '.' . $this->tileset . '?' . $url_after; |
|
| 47 | |||
| 48 | 8 | return Zttp::delete($url)->status() === Mapbox::DELETE_SUCCESS_STATUS; |
|
| 49 | } |
||
| 51 |