Code Duplication    Length = 3-3 lines in 2 locations

src/GuzzleAdapter.php 2 locations

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