@@ -8,17 +8,17 @@ discard block |
||
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 |
||
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 | }); |
@@ -62,7 +62,7 @@ |
||
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 | } |
@@ -13,7 +13,7 @@ discard block |
||
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 |
||
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 | } |