Code Duplication    Length = 3-3 lines in 2 locations

src/GuzzleAdapter.php 2 locations

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