Test Failed
Push — master ( 87b090...d209b7 )
by Rizart
02:47
created
src/ElasticEmail/ElasticEmailV2.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     }
47 47
 
48 48
     /**
49
-     * @param mixed $emailRequest
49
+     * @param EmailRequest $emailRequest
50 50
      */
51 51
     public function setEmailRequest($emailRequest)
52 52
     {
Please login to merge, or discard this patch.
src/ElasticEmail/V2/Requests/BaseRequest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * BaseRequest constructor.
26
-     * @param $baseUri
26
+     * @param string $baseUri
27 27
      * @param array $config
28 28
      */
29 29
     public function __construct($baseUri, array $config)
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     /**
36 36
      * Get the HTTP status code.
37 37
      *
38
-     * @return mixed
38
+     * @return Client
39 39
      */
40 40
     public function getHttpClient()
41 41
     {
Please login to merge, or discard this patch.
src/ElasticEmail/V2/Responses/BaseResponse.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     /**
69 69
      * Get the HTTP status code.
70 70
      *
71
-     * @return Response
71
+     * @return Client
72 72
      */
73 73
     public function getHttpClient()
74 74
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 namespace ElasticEmail\V2\Responses;
8 8
 
9 9
 use GuzzleHttp\Client;
10
-use GuzzleHttp\Psr7\Response;
11 10
 use GuzzleHttp\Psr7\Response as Psr7Response;
12 11
 
13 12
 abstract class BaseResponse
Please login to merge, or discard this patch.