Completed
Push — master ( f22a46...046041 )
by Patrick
02:27 queued 12s
created
Settings.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     public function getDataSetData($dataSetName)
73 73
     {
74 74
         if(!isset(\FlipsideSettings::$dataset) || !isset(\FlipsideSettings::$dataset[$dataSetName]))
75
-	{
75
+    {
76 76
             return false;
77 77
         }
78 78
         return \FlipsideSettings::$dataset[$dataSetName];
Please login to merge, or discard this patch.
Data/FilterClause.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -140,9 +140,9 @@  discard block
 block discarded – undo
140 140
             $case = true;
141 141
         }
142 142
         if($case)
143
-	{
143
+    {
144 144
             if(class_exists('MongoRegex'))
145
-	    {
145
+        {
146 146
                 return array($field=>array('$regex'=>new \MongoRegex('/'.$this->var2.'/i')));
147 147
             }
148 148
             else
@@ -236,15 +236,15 @@  discard block
 block discarded – undo
236 236
         {
237 237
             case '=':
238 238
                 return array($this->var1=>$this->var2);
239
-	    case 'substringof':
240
-		if(class_exists('MongoRegex'))
241
-		{
242
-		    return array($this->var1=>array('$regex'=>new \MongoRegex('/'.$this->var2.'/i')));
243
-		}
244
-		else
245
-		{
239
+        case 'substringof':
240
+        if(class_exists('MongoRegex'))
241
+        {
242
+            return array($this->var1=>array('$regex'=>new \MongoRegex('/'.$this->var2.'/i')));
243
+        }
244
+        else
245
+        {
246 246
                     return array($this->var1=>array('$regex'=>new \MongoDB\BSON\Regex($this->var2, 'i')));
247
-		}
247
+        }
248 248
             case 'indexof':
249 249
                 return $this->getMongoIndexOfOperator();
250 250
             default:
@@ -254,15 +254,15 @@  discard block
 block discarded – undo
254 254
 
255 255
     public function php_compare($value)
256 256
     {
257
-	if(is_array($value))
258
-	{
257
+    if(is_array($value))
258
+    {
259 259
             return $this->php_compare($value[$this->var1]);
260
-	}
260
+    }
261 261
         switch($this->op)
262 262
         {
263 263
             case '!=':
264 264
                 return $value != $this->var2;
265
-	    case '=':
265
+        case '=':
266 266
                 return $value == $this->var2;
267 267
             case '<':
268 268
                 return $value < $this->var2;
Please login to merge, or discard this patch.
Http/WebPage.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@  discard block
 block discarded – undo
22 22
 
23 23
         $twigSettings = array();
24 24
         if(\file_exists('/var/php_cache/twig'))
25
-    	{	
26
-        	$twigCache = $this->settings->getGlobalSetting('twig_cache', '/var/php_cache/twig');
27
-        	$twigSettings['cache'] = $twigCache;
28
-		    //$twigSettings = array('cache' => $twigCache, 'debug' => true);
25
+        {	
26
+            $twigCache = $this->settings->getGlobalSetting('twig_cache', '/var/php_cache/twig');
27
+            $twigSettings['cache'] = $twigCache;
28
+            //$twigSettings = array('cache' => $twigCache, 'debug' => true);
29 29
         }
30 30
         //$twigSettings['debug'] = true;
31 31
 
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
 
53 53
         $this->aboutUrl = $this->settings->getGlobalSetting('about_url', $this->wwwUrl.'/about');
54 54
         $this->content['header']['right']['About'] = array(
55
-          'url' => $this->aboutUrl,
56
-          'menu' => $this->settings->getGlobalSetting('about_menu', array(
55
+            'url' => $this->aboutUrl,
56
+            'menu' => $this->settings->getGlobalSetting('about_menu', array(
57 57
             'Burning Flipside' => $this->wwwUrl.'/about/event',
58 58
             'AAR, LLC' => $this->wwwUrl.'/organization/aar',
59 59
             'Privacy Policy' => $this->wwwUrl.'/about/privacy'
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         $this->content['urls']['loginUrl'] = $this->loginUrl;
70 70
         $this->content['urls']['logoutUrl'] = $this->logoutUrl;
71 71
 
72
-	if($this->user === false || $this->user === null)
72
+    if($this->user === false || $this->user === null)
73 73
         {
74 74
             if(isset($_SERVER['REQUEST_URI']) && strstr($_SERVER['REQUEST_URI'], 'logout.php') === false)
75 75
             {
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
     {
204 204
         if(!isset($this->content['notifications']))
205 205
         {
206
-          $this->content['notifications'] = array();
206
+            $this->content['notifications'] = array();
207 207
         }
208 208
         array_push($this->content['notifications'], array('msg'=>$message, 'sev'=>$severity, 'dismissible'=>$dismissible));
209 209
     }
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
     {
217 217
         if(!isset($this->content['body']))
218 218
         {
219
-          $this->content['body'] = $this->body;
219
+            $this->content['body'] = $this->body;
220 220
         }
221 221
         //Add page JS just before rednering so it is after any added by the page explicitly
222 222
         // $this->addJS('js/'.basename($_SERVER['SCRIPT_NAME'], '.php').'.js');
Please login to merge, or discard this patch.
Serialize/ExcelSerializer.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         {
32 32
             return null;
33 33
         }
34
-	$data = $this->getArray($array);
34
+    $data = $this->getArray($array);
35 35
         $ssheat = new Spreadsheet();
36 36
         $sheat = $ssheat->getActiveSheet();
37 37
         $keys = array_shift($data);
Please login to merge, or discard this patch.