| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | 1 | public function url(string $path): string |
|
| 36 | { |
||
| 37 | 1 | if (isset($this->config['url'])) { |
|
| 38 | 1 | return $this->concatPathToUrl($this->config['url'], $path); |
|
| 39 | } |
||
| 40 | |||
| 41 | 1 | return $this->concatPathToUrl( |
|
| 42 | 1 | "https://{$this->config['bucket']}.{$this->config['region']}.bcebos.com", |
|
| 43 | 1 | $path |
|
| 44 | 1 | ); |
|
| 47 |