Completed
Push — master ( 24a13c...980fdb )
by Tobias
12s
created
src/Model/User.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
         if (isset($json['links'])) {
67 67
             $this->links = $json['links'];
68 68
         }
69
-        if(isset($json['xmpp_jid'])) {
69
+        if (isset($json['xmpp_jid'])) {
70 70
             $this->xmppJid = $json['xmpp_jid'];
71 71
             $this->deleted = $json['is_deleted'];
72 72
             $this->lastActive = $json['last_active'];
Please login to merge, or discard this patch.
src/Auth/OAuth2.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
      */
24 24
     public function getCredential()
25 25
     {
26
-        return "Bearer ".$this->authToken;
26
+        return "Bearer " . $this->authToken;
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/Client.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,7 @@
 block discarded – undo
33 33
         if ($browser === null) {
34 34
             $client = new Curl();
35 35
             $this->browser = new Browser($client);
36
-        }
37
-        else {
36
+        } else {
38 37
             $this->browser = $browser;
39 38
         }
40 39
     }
Please login to merge, or discard this patch.