Completed
Push — develop ( ceecfe...828bee )
by Patrick
05:59 queued 03:23
created
Autoload.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,17 +8,17 @@  discard block
 block discarded – undo
8 8
 * @copyright Copyright (c) 2015, Austin Artistic Reconstruction
9 9
 * @license http://www.apache.org/licenses/ Apache 2.0 License
10 10
 */
11
-spl_autoload_register(function ($class) {
11
+spl_autoload_register(function($class) {
12 12
 
13 13
     // project-specific namespace prefix
14 14
     $prefix = 'Flipside\\';
15 15
 
16 16
     // base directory for the namespace prefix
17
-    $base_dir = __DIR__ . '/';
17
+    $base_dir = __DIR__.'/';
18 18
 
19 19
     // does the class use the namespace prefix?
20 20
     $len = strlen($prefix);
21
-    if (strncmp($prefix, $class, $len) !== 0) {
21
+    if(strncmp($prefix, $class, $len) !== 0) {
22 22
         // no, move to the next registered autoloader
23 23
         return;
24 24
     }
@@ -29,10 +29,10 @@  discard block
 block discarded – undo
29 29
     // replace the namespace prefix with the base directory, replace namespace
30 30
     // separators with directory separators in the relative class name, append
31 31
     // with .php
32
-    $file = $base_dir . str_replace('\\', '/', $relative_class) . '.php';
32
+    $file = $base_dir.str_replace('\\', '/', $relative_class).'.php';
33 33
 
34 34
     // if the file exists, require it
35
-    if (file_exists($file)) {
35
+    if(file_exists($file)) {
36 36
         require $file;
37 37
     }
38 38
 });
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,7 +8,8 @@  discard block
 block discarded – undo
8 8
 * @copyright Copyright (c) 2015, Austin Artistic Reconstruction
9 9
 * @license http://www.apache.org/licenses/ Apache 2.0 License
10 10
 */
11
-spl_autoload_register(function ($class) {
11
+spl_autoload_register(function ($class)
12
+{
12 13
 
13 14
     // project-specific namespace prefix
14 15
     $prefix = 'Flipside\\';
@@ -18,7 +19,8 @@  discard block
 block discarded – undo
18 19
 
19 20
     // does the class use the namespace prefix?
20 21
     $len = strlen($prefix);
21
-    if (strncmp($prefix, $class, $len) !== 0) {
22
+    if (strncmp($prefix, $class, $len) !== 0)
23
+    {
22 24
         // no, move to the next registered autoloader
23 25
         return;
24 26
     }
@@ -32,7 +34,8 @@  discard block
 block discarded – undo
32 34
     $file = $base_dir . str_replace('\\', '/', $relative_class) . '.php';
33 35
 
34 36
     // if the file exists, require it
35
-    if (file_exists($file)) {
37
+    if (file_exists($file))
38
+    {
36 39
         require $file;
37 40
     }
38 41
 });
Please login to merge, or discard this patch.
Data/DataTableSessionHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
     public function gc($maxlifetime)
64 64
     {
65
-        $date = date("Y-m-d H:i:s", time()-$maxlifetime);
65
+        $date = date("Y-m-d H:i:s", time() - $maxlifetime);
66 66
         $filter = new \Flipside\Data\Filter("sessionLastAccess lt $date");
67 67
         return $this->dataTable->delete($filter);
68 68
     }
Please login to merge, or discard this patch.
Http/WebSite.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
         $settings = array("settings"=>["determineRouteBeforeAppMiddleware"=>true]);
14 14
         parent::__construct($settings);
15 15
         $c = $this->getContainer();
16
-        $c['errorHandler'] = function($c) { return new WebErrorHandler();};
16
+        $c['errorHandler'] = function($c) { return new WebErrorHandler(); };
17 17
         $this->add(new AuthMiddleware());
18 18
         $this->add(new ODataMiddleware());
19 19
     }
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     public function registerAPI($uri, $api)
27 27
     {
28
-        $group = $this->group($uri, function() use($api){$api->setup($this);});
28
+        $group = $this->group($uri, function() use($api){$api->setup($this); });
29 29
         $group->add(new \Flipside\Http\Rest\SerializationMiddleware());
30 30
         $group->add(new \Flipside\Http\Rest\CORSMiddleware($this->getContainer()));
31 31
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,9 @@  discard block
 block discarded – undo
13 13
         $settings = array("settings"=>["determineRouteBeforeAppMiddleware"=>true]);
14 14
         parent::__construct($settings);
15 15
         $c = $this->getContainer();
16
-        $c['errorHandler'] = function($c) { return new WebErrorHandler();};
16
+        $c['errorHandler'] = function($c)
17
+        {
18
+return new WebErrorHandler();};
17 19
         $this->add(new AuthMiddleware());
18 20
         $this->add(new ODataMiddleware());
19 21
     }
@@ -25,7 +27,9 @@  discard block
 block discarded – undo
25 27
 
26 28
     public function registerAPI($uri, $api)
27 29
     {
28
-        $group = $this->group($uri, function() use($api){$api->setup($this);});
30
+        $group = $this->group($uri, function() use($api)
31
+        {
32
+$api->setup($this);});
29 33
         $group->add(new \Flipside\Http\Rest\SerializationMiddleware());
30 34
         $group->add(new \Flipside\Http\Rest\CORSMiddleware($this->getContainer()));
31 35
     }
Please login to merge, or discard this patch.