Completed
Pull Request — master (#12)
by Tobias
14:27 queued 04:26
created
src/Api/HttpApi.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      * Send a POST request with raw data.
90 90
      *
91 91
      * @param string       $path           Request path
92
-     * @param array|string $body           Request body
92
+     * @param null|string $body           Request body
93 93
      * @param array        $requestHeaders Request headers
94 94
      *
95 95
      * @return ResponseInterface
Please login to merge, or discard this patch.
src/Model/Cart/CartItem.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      * @param int          $quantity
50 50
      * @param int          $unitPrice
51 51
      * @param int          $total
52
-     * @param null|Variant $variant
52
+     * @param Variant $variant
53 53
      */
54 54
     private function __construct(
55 55
         int $id,
Please login to merge, or discard this patch.
src/Http/AuthenticationPlugin.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 namespace FAPI\Sylius\Http;
6 6
 
7 7
 use Http\Client\Common\Plugin;
8
-use Http\Promise\Promise;
9 8
 use Psr\Http\Message\RequestInterface;
10 9
 use Psr\Http\Message\ResponseInterface;
11 10
 
Please login to merge, or discard this patch.
src/Api/Cart.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -49,9 +49,6 @@
 block discarded – undo
49 49
     }
50 50
 
51 51
     /**
52
-     * @param string $message
53
-     * @param string $location
54
-     * @param array  $hashtags
55 52
      *
56 53
      * @throws Exception
57 54
      *
Please login to merge, or discard this patch.
src/Api/Checkout.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
     ];
31 31
 
32 32
     /**
33
-     * @param int $id
34 33
      *
35 34
      * @throws Exception
36 35
      *
Please login to merge, or discard this patch.
src/Api/Customer.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -21,9 +21,6 @@
 block discarded – undo
21 21
 final class Customer extends HttpApi
22 22
 {
23 23
     /**
24
-     * @param string $message
25
-     * @param string $location
26
-     * @param array  $hashtags
27 24
      *
28 25
      * @throws Exception
29 26
      *
Please login to merge, or discard this patch.