@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | * |
| 234 | 234 | * @param \stdClass $data The AuthData from the session |
| 235 | 235 | * |
| 236 | - * @return null|\Auth\LDAPUser The LDAPUser represented by this data |
|
| 236 | + * @return LDAPUser The LDAPUser represented by this data |
|
| 237 | 237 | */ |
| 238 | 238 | public function getUser($data) |
| 239 | 239 | { |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | * |
| 246 | 246 | * @param string $name The Group's name |
| 247 | 247 | * |
| 248 | - * @return null|\Auth\LDAPGroup The LDAPGroup represented by the name or null if not found |
|
| 248 | + * @return null|LDAPGroup The LDAPGroup represented by the name or null if not found |
|
| 249 | 249 | */ |
| 250 | 250 | public function getGroupByName($name) |
| 251 | 251 | { |
@@ -329,7 +329,7 @@ discard block |
||
| 329 | 329 | } |
| 330 | 330 | |
| 331 | 331 | /** |
| 332 | - * @param boolean|\Data\Filter $filter The filter to user when reading users |
|
| 332 | + * @param \Flipside\Data\Filter $filter The filter to user when reading users |
|
| 333 | 333 | * @param boolean|array $select The fields to return |
| 334 | 334 | * @param boolean|integer $top The number of records to return |
| 335 | 335 | * @param boolean|integer $skip The number of records to skip |
@@ -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 | } |