Completed
Push — master ( d6addb...f5f8b9 )
by Patrick
03:38
created
Auth/OAuth2/class.OAuth2Authenticator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 /** Only load the HTTPFul bootstrap if it isn't already loaded*/
17 17
 if(!class_exists('Httpful\Request'))
18 18
 {
19
-    require dirname(__FILE__) . '/../../libs/httpful/bootstrap.php';
19
+    require dirname(__FILE__).'/../../libs/httpful/bootstrap.php';
20 20
 }
21 21
 
22 22
 /**
Please login to merge, or discard this patch.
Auth/class.GoogleAuthenticator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace Auth;
3
-require dirname(__FILE__) . '/../libs/google/src/Google/autoload.php';
3
+require dirname(__FILE__).'/../libs/google/src/Google/autoload.php';
4 4
 
5 5
 class GoogleAuthenticator extends Authenticator
6 6
 {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     public function authenticate($code, &$currentUser = false)
35 35
     {
36 36
         $googleUser = false;
37
-        try{
37
+        try {
38 38
             $this->client->authenticate($code);
39 39
             $this->token = $this->client->getAccessToken();
40 40
             \FlipSession::setVar('GoogleToken', $this->token);
Please login to merge, or discard this patch.