@@ 63-65 (lines=3) @@ | ||
60 | $this->visibility = AdapterInterface::VISIBILITY_PRIVATE; |
|
61 | $this->base .= $parsed['user']; |
|
62 | ||
63 | if (isset($parsed['pass']) && $parsed['pass'] !== '') { |
|
64 | $this->base .= ':' . $parsed['pass']; |
|
65 | } |
|
66 | ||
67 | $this->base .= '@'; |
|
68 | }; |
|
@@ 72-74 (lines=3) @@ | ||
69 | ||
70 | $this->base .= $parsed['host'] . '/'; |
|
71 | ||
72 | if (isset($parsed['path']) && $parsed['path'] !== '/') { |
|
73 | $this->base .= trim($parsed['path'], '/') . '/'; |
|
74 | } |
|
75 | } |
|
76 | ||
77 | /** |