Code Duplication    Length = 7-8 lines in 2 locations

src/Http/Clients/JetSmsHttpClient.php 1 location

@@ 60-67 (lines=8) @@
57
     * @param string $password
58
     * @param string $outboxName
59
     */
60
    public function __construct(Client $client, $url, $username, $password, $outboxName)
61
    {
62
        $this->httpClient = $client;
63
        $this->url = $url;
64
        $this->username = $username;
65
        $this->password = $password;
66
        $this->outboxName = $outboxName;
67
    }
68
69
    /**
70
     * Send a short message using the JetSms services.

src/Http/Clients/JetSmsXmlClient.php 1 location

@@ 51-57 (lines=7) @@
48
     * @param string $password
49
     * @param string $outboxName
50
     */
51
    public function __construct($url, $username, $password, $outboxName)
52
    {
53
        $this->url = $url;
54
        $this->username = $username;
55
        $this->password = $password;
56
        $this->outboxName = $outboxName;
57
    }
58
59
    /**
60
     * Send a short message using the JetSms services.