Passed
Pull Request — master (#78)
by
unknown
02:10
created
src/Exception/ApiErrorException.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@  discard block
 block discarded – undo
10 10
 class ApiErrorException extends Exception
11 11
 {
12 12
 
13
-  /**
14
-   * @var object
15
-   */
13
+    /**
14
+     * @var object
15
+     */
16 16
     private $responseBody;
17 17
 
18 18
     /**
@@ -58,17 +58,17 @@  discard block
 block discarded – undo
58 58
         }
59 59
     }
60 60
 
61
-  /**
62
-   * @return object
63
-   */
61
+    /**
62
+     * @return object
63
+     */
64 64
     public function getResponseBody()
65 65
     {
66 66
         return $this->responseBody;
67 67
     }
68 68
 
69
-  /**
70
-   * @param object $response_body
71
-   */
69
+    /**
70
+     * @param object $response_body
71
+     */
72 72
     private function setResponseBody($response_body)
73 73
     {
74 74
         $this->responseBody = $response_body;
Please login to merge, or discard this patch.
src/Response/MemberResponse.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@
 block discarded – undo
30 30
         $this->last_name = $member->last_name;
31 31
 
32 32
         if (property_exists($member, 'mail')) {
33
-          $this->mail = $member->mail;
33
+            $this->mail = $member->mail;
34 34
         }
35 35
         elseif (property_exists($member, 'email')) {
36
-          $this->mail = $member->email;
36
+            $this->mail = $member->email;
37 37
         }
38 38
         $this->picture_url = $member->picture_url;
39 39
         $this->username = $member->username;
Please login to merge, or discard this patch.