Completed
Push — master ( 10eaf5...d09130 )
by Tobias
06:26
created
src/Api/HttpApi.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      * Send a POST request with raw data.
107 107
      *
108 108
      * @param string       $path           Request path
109
-     * @param array|string $body           Request body
109
+     * @param string $body           Request body
110 110
      * @param array        $requestHeaders Request headers
111 111
      *
112 112
      * @return ResponseInterface
Please login to merge, or discard this patch.
src/Api/Dimension.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,6 @@
 block discarded – undo
13 13
 final class Dimension extends HttpApi
14 14
 {
15 15
     /**
16
-     * @param string $username
17
-     * @param array  $params
18 16
      *
19 17
      * @throws Exception
20 18
      *
Please login to merge, or discard this patch.
src/Model/UserManagement/User.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     {
39 39
         $data = $data['data'];
40 40
 
41
-        return new self(isset($data['name']) ? $data['name']: '', $data['email']);
41
+        return new self(isset($data['name']) ? $data['name'] : '', $data['email']);
42 42
     }
43 43
 
44 44
     /**
Please login to merge, or discard this patch.