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.