@@ -28,7 +28,7 @@ |
||
| 28 | 28 | |
| 29 | 29 | protected function set_response($message, $type = 'internal') |
| 30 | 30 | { |
| 31 | - switch($type) |
|
| 31 | + switch ($type) |
|
| 32 | 32 | { |
| 33 | 33 | case 'internal' : |
| 34 | 34 | $this->response['internal'] = $message; |
@@ -11,39 +11,39 @@ discard block |
||
| 11 | 11 | |
| 12 | 12 | public static function isBoolean($value, $strict = false) |
| 13 | 13 | { |
| 14 | - if($strict && ($value === true || $value === false)) |
|
| 14 | + if ($strict && ($value === true || $value === false)) |
|
| 15 | 15 | return true; |
| 16 | - if(!$strict && ((bool) $value === true || (bool) $value === false)) |
|
| 16 | + if (!$strict && ((bool) $value === true || (bool) $value === false)) |
|
| 17 | 17 | return true; |
| 18 | 18 | return false; |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | public static function isDate($value) |
| 22 | 22 | { |
| 23 | - if(strtotime($value) !== -1) |
|
| 23 | + if (strtotime($value) !== -1) |
|
| 24 | 24 | return true; |
| 25 | - if(date('y', $value) !== false) |
|
| 25 | + if (date('y', $value) !== false) |
|
| 26 | 26 | return true; |
| 27 | 27 | return false; |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | public static function isInteger($value, $strict = false) |
| 31 | 31 | { |
| 32 | - if($strict) |
|
| 32 | + if ($strict) |
|
| 33 | 33 | return is_int($value); |
| 34 | 34 | return (int) $value == $value; |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | public static function isIP($value) |
| 38 | 38 | { |
| 39 | - if(self::isInteger(ip2long($value))) |
|
| 39 | + if (self::isInteger(ip2long($value))) |
|
| 40 | 40 | return true; |
| 41 | 41 | return false; |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | public static function isString($value, $strict = false) |
| 45 | 45 | { |
| 46 | - if($strict) |
|
| 46 | + if ($strict) |
|
| 47 | 47 | return is_string($value); |
| 48 | 48 | return (string) $value == $value; |
| 49 | 49 | } |
@@ -67,14 +67,14 @@ discard block |
||
| 67 | 67 | private static function check_value($pattern, $string) |
| 68 | 68 | { |
| 69 | 69 | preg_match($pattern, $string, $matches); |
| 70 | - if(empty($matches)) |
|
| 70 | + if (empty($matches)) |
|
| 71 | 71 | return false; |
| 72 | 72 | return $matches[0] == $string; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | public static function checkRequest($type, $key, $validation, $strict = false) |
| 76 | 76 | { |
| 77 | - switch($type) |
|
| 77 | + switch ($type) |
|
| 78 | 78 | { |
| 79 | 79 | case 'server': |
| 80 | 80 | $value = Request::getServer($key); |
@@ -84,10 +84,10 @@ discard block |
||
| 84 | 84 | break; |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - if($value == false) |
|
| 87 | + if ($value == false) |
|
| 88 | 88 | return false; |
| 89 | 89 | |
| 90 | - switch($validation) |
|
| 90 | + switch ($validation) |
|
| 91 | 91 | { |
| 92 | 92 | case 'boolean': |
| 93 | 93 | return self::isBoolean($value, $strict); |
@@ -18,9 +18,9 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | static function getServer($key = null) |
| 20 | 20 | { |
| 21 | - if($key) |
|
| 21 | + if ($key) |
|
| 22 | 22 | { |
| 23 | - if(isset(self::$server[$key])) |
|
| 23 | + if (isset(self::$server[$key])) |
|
| 24 | 24 | return self::$server[$key]; |
| 25 | 25 | return false; |
| 26 | 26 | } |
@@ -29,16 +29,16 @@ discard block |
||
| 29 | 29 | |
| 30 | 30 | static function isAjax() |
| 31 | 31 | { |
| 32 | - if(self::getServer(self::$AJAX_REQUEST)) |
|
| 32 | + if (self::getServer(self::$AJAX_REQUEST)) |
|
| 33 | 33 | return true; |
| 34 | 34 | return false; |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | static function getGet($key = null) |
| 38 | 38 | { |
| 39 | - if($key) |
|
| 39 | + if ($key) |
|
| 40 | 40 | { |
| 41 | - if(isset(self::$get[$key])) |
|
| 41 | + if (isset(self::$get[$key])) |
|
| 42 | 42 | return self::$get[$key]; |
| 43 | 43 | return false; |
| 44 | 44 | } |
@@ -47,9 +47,9 @@ discard block |
||
| 47 | 47 | |
| 48 | 48 | static function getPost($key = null) |
| 49 | 49 | { |
| 50 | - if($key) |
|
| 50 | + if ($key) |
|
| 51 | 51 | { |
| 52 | - if(isset(self::$post[$key])) |
|
| 52 | + if (isset(self::$post[$key])) |
|
| 53 | 53 | return self::$post[$key]; |
| 54 | 54 | return false; |
| 55 | 55 | } |
@@ -4,5 +4,5 @@ |
||
| 4 | 4 | |
| 5 | 5 | interface LogRepositoryInterface |
| 6 | 6 | { |
| 7 | - public function getActiveLogs($limit = null, $offset= 0); |
|
| 7 | + public function getActiveLogs($limit = null, $offset = 0); |
|
| 8 | 8 | } |
@@ -4,5 +4,5 @@ |
||
| 4 | 4 | |
| 5 | 5 | interface WaterfallRepositoryInterface |
| 6 | 6 | { |
| 7 | - public function getWaterfalls($limit = null, $offset= 0); |
|
| 7 | + public function getWaterfalls($limit = null, $offset = 0); |
|
| 8 | 8 | } |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | $namespace = 'lifestream'; |
| 4 | -require_once __DIR__ . '/../../bootstrap.php'; |
|
| 4 | +require_once __DIR__.'/../../bootstrap.php'; |
|
| 5 | 5 | |
| 6 | 6 | // route |
| 7 | 7 | Loader::loadInstance('router', 'Router'); |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | $namespace = 'site'; |
| 4 | -require_once __DIR__ . '/../../bootstrap.php'; |
|
| 4 | +require_once __DIR__.'/../../bootstrap.php'; |
|
| 5 | 5 | |
| 6 | 6 | // route |
| 7 | 7 | Loader::loadInstance('router', 'Router'); |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | $namespace = 'waterfalls'; |
| 4 | -require_once __DIR__ . '/../../bootstrap.php'; |
|
| 4 | +require_once __DIR__.'/../../bootstrap.php'; |
|
| 5 | 5 | |
| 6 | 6 | // route |
| 7 | 7 | Loader::loadInstance('router', 'Router'); |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | $namespace = 'home'; |
| 4 | -require_once __DIR__ . '/../../bootstrap.php'; |
|
| 4 | +require_once __DIR__.'/../../bootstrap.php'; |
|
| 5 | 5 | |
| 6 | 6 | // route |
| 7 | 7 | Loader::loadInstance('router', 'Router'); |