Completed
Pull Request — master (#6)
by Patrick
03:09
created
class.FlipSession.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
             $len = $pos - $offset;
158 158
             $name = substr($sessionData, $offset, $len);
159 159
             if($name === false) break;
160
-            $offset += $len+1;
160
+            $offset += $len + 1;
161 161
             $data = @unserialize(substr($sessionData, $offset));
162 162
             $res[$name] = $data;
163 163
             $offset += strlen(serialize($data));
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
             else
186 186
             {
187 187
                 $tmp = FlipSession::unserializePhpSession($sessionData);
188
-                $tmp['sid' ] = $sessionId;
188
+                $tmp['sid'] = $sessionId;
189 189
                 array_push($res, $tmp);
190 190
             }
191 191
         }
Please login to merge, or discard this patch.
class.FlipsideCAPTCHA.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,13 +36,13 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $dataset = DataSetFactory::getDataSetByName('profiles');
38 38
         $datatable = $dataset['captcha'];
39
-        return $datatable->create(array('question'=>$question,'hint'=>$hint,'answer'=>$answer));
39
+        return $datatable->create(array('question'=>$question, 'hint'=>$hint, 'answer'=>$answer));
40 40
     }
41 41
 
42 42
     public function __construct()
43 43
     {
44 44
         $this->validIDs = FlipsideCAPTCHA::get_valid_captcha_ids();
45
-        $this->random_id = mt_rand(0, count($this->validIDs)-1);
45
+        $this->random_id = mt_rand(0, count($this->validIDs) - 1);
46 46
         $this->random_id = $this->validIDs[$this->random_id];
47 47
     }
48 48
 
@@ -84,22 +84,22 @@  discard block
 block discarded – undo
84 84
 
85 85
     public function is_answer_right($answer)
86 86
     {
87
-        return strcasecmp($this->get_answer(),$answer) == 0;
87
+        return strcasecmp($this->get_answer(), $answer) == 0;
88 88
     }
89 89
 
90
-    public function draw_captcha($explination=true, $return=false, $ownForm=false)
90
+    public function draw_captcha($explination = true, $return = false, $ownForm = false)
91 91
     {
92 92
         $string = '';
93 93
 
94 94
         if($ownForm)
95 95
         {
96
-            $string.= '<form id="flipcaptcha" name="flipcaptcha">';
96
+            $string .= '<form id="flipcaptcha" name="flipcaptcha">';
97 97
         }
98 98
 
99 99
         $string .= '<label for="captcha" class="col-sm-2 control-label">'.$this->get_question().'</label><div class="col-sm-10"><input class="form-control" type="text" id="captcha" name="captcha" placeholder="'.$this->get_hint().'" required/></div>';
100 100
         if($ownForm)
101 101
         {
102
-            $string.='</form>';
102
+            $string .= '</form>';
103 103
         }
104 104
         if($explination)
105 105
         {
Please login to merge, or discard this patch.
Serialize/class.ExcelSerializer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 namespace Serialize;
3 3
 
4
-require_once dirname(__FILE__) . '/../libs/PHPExcel/Classes/PHPExcel.php';
4
+require_once dirname(__FILE__).'/../libs/PHPExcel/Classes/PHPExcel.php';
5 5
 
6 6
 class ExcelSerializer extends SpreadSheetSerializer
7 7
 {
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
             for($j = 0; $j < $colCount; $j++)
33 33
             {
34 34
                 $colName = $keys[$j];
35
-                $sheat->setCellValueByColumnAndRow($j, 2+$i, $data[$i][$j]);
35
+                $sheat->setCellValueByColumnAndRow($j, 2 + $i, $data[$i][$j]);
36 36
             }
37 37
         }
38 38
         if(strcasecmp($type, 'xlsx') === 0 || strcasecmp($type, 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet') === 0)
Please login to merge, or discard this patch.
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.
Auth/class.Group.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
         return true;
106 106
     }
107 107
 
108
-    static function from_name($name, $data=false)
108
+    static function from_name($name, $data = false)
109 109
     {
110 110
         return false;
111 111
     }
Please login to merge, or discard this patch.