| @@ 55-57 (lines=3) @@ | ||
| 52 | $this->visibility = AdapterInterface::VISIBILITY_PRIVATE; |
|
| 53 | $this->base .= $parsed['user']; |
|
| 54 | ||
| 55 | if (isset($parsed['pass']) && $parsed['pass'] !== '') { |
|
| 56 | $this->base .= ':' . $parsed['pass']; |
|
| 57 | } |
|
| 58 | ||
| 59 | $this->base .= '@'; |
|
| 60 | }; |
|
| @@ 64-66 (lines=3) @@ | ||
| 61 | ||
| 62 | $this->base .= $parsed['host'] . '/'; |
|
| 63 | ||
| 64 | if (isset($parsed['path']) && $parsed['path'] !== '/') { |
|
| 65 | $this->base .= trim($parsed['path'], '/') . '/'; |
|
| 66 | } |
|
| 67 | } |
|
| 68 | ||
| 69 | /** |
|