@@ -7,11 +7,11 @@ |
||
| 7 | 7 | |
| 8 | 8 | /* NOTE: in case of error an exception is thrown */ |
| 9 | 9 | |
| 10 | -try{ |
|
| 10 | +try { |
|
| 11 | 11 | |
| 12 | 12 | Router::create()->dispatch(); |
| 13 | 13 | |
| 14 | -}catch(Exception $er){ |
|
| 14 | +}catch (Exception $er) { |
|
| 15 | 15 | |
| 16 | 16 | die("Code Error: {$er->getCode()}, Line: {$er->getLine()}, File: {$er->getFile()}, Message: {$er->getMessage()}."); |
| 17 | 17 | |
@@ -4,31 +4,31 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | use Exception; |
| 6 | 6 | |
| 7 | -trait CheckTrait{ |
|
| 7 | +trait CheckTrait { |
|
| 8 | 8 | use FilterTrait; |
| 9 | 9 | |
| 10 | 10 | protected function check_protocol(string $expected, string $current) |
| 11 | 11 | { |
| 12 | - if($expected !== $current){ |
|
| 13 | - throw new Exception('Page not found.',404); |
|
| 12 | + if ($expected !== $current) { |
|
| 13 | + throw new Exception('Page not found.', 404); |
|
| 14 | 14 | } |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | - protected function check_name(string $route_name){ |
|
| 18 | - if(!array_key_exists($route_name,$this->routers)){ |
|
| 19 | - throw new Exception('Page not found.',404); |
|
| 17 | + protected function check_name(string $route_name) { |
|
| 18 | + if (!array_key_exists($route_name, $this->routers)) { |
|
| 19 | + throw new Exception('Page not found.', 404); |
|
| 20 | 20 | } |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | - protected function check_typeRole($role){ |
|
| 24 | - if(!is_string($role) && @get_class($role) !== 'Closure' ){ |
|
| 23 | + protected function check_typeRole($role) { |
|
| 24 | + if (!is_string($role) && @get_class($role) !== 'Closure') { |
|
| 25 | 25 | throw new Exception("Improperly defined route track."); |
| 26 | 26 | } |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | protected function check_config() |
| 30 | 30 | { |
| 31 | - if(!defined('ROUTER_CONFIG')){ |
|
| 31 | + if (!defined('ROUTER_CONFIG')) { |
|
| 32 | 32 | throw new Exception("Information for loading routes has not been defined."); |
| 33 | 33 | } |
| 34 | 34 | } |
@@ -40,12 +40,12 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | protected function check_parameters(array $route_loop, array $route_request): bool |
| 42 | 42 | { |
| 43 | - foreach($route_loop as $rr => $param){ |
|
| 44 | - if( (substr($param,0,1) === '{') ){ |
|
| 45 | - $_GET[ substr($param,1,strlen($param)-2) ] = $route_request[$rr]; |
|
| 43 | + foreach ($route_loop as $rr => $param) { |
|
| 44 | + if ((substr($param, 0, 1) === '{')) { |
|
| 45 | + $_GET[substr($param, 1, strlen($param)-2)] = $route_request[$rr]; |
|
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - if($this->check_parameter($param, $route_request[$rr])){ |
|
| 48 | + if ($this->check_parameter($param, $route_request[$rr])) { |
|
| 49 | 49 | return false; |
| 50 | 50 | } |
| 51 | 51 | } |
@@ -54,22 +54,22 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | protected function check_parameter(string $route_loop, string $route_request) |
| 56 | 56 | { |
| 57 | - return !( substr($route_loop,0,1) === '{' ) and $route_loop !== $route_request; |
|
| 57 | + return !(substr($route_loop, 0, 1) === '{') and $route_loop !== $route_request; |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | protected function check_role() |
| 61 | 61 | { |
| 62 | - if(!array_key_exists('role', $this->getData()['POST'])){ |
|
| 62 | + if (!array_key_exists('role', $this->getData()['POST'])) { |
|
| 63 | 63 | throw new Exception('O servidor não conseguiu identificar a finalidade deste formulário.'); |
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | protected function hasProtocol(array $route, string $currentProtocol) |
| 68 | 68 | { |
| 69 | - $protocols = ( is_array($route['protocol']) ) ? $route['protocol'] : [ $route['protocol'] ]; |
|
| 69 | + $protocols = (is_array($route['protocol'])) ? $route['protocol'] : [$route['protocol']]; |
|
| 70 | 70 | |
| 71 | - foreach($protocols as $protocol){ |
|
| 72 | - if($protocol !== $currentProtocol){ |
|
| 71 | + foreach ($protocols as $protocol) { |
|
| 72 | + if ($protocol !== $currentProtocol) { |
|
| 73 | 73 | continue; |
| 74 | 74 | } |
| 75 | 75 | } |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | use Exception; |
| 6 | 6 | |
| 7 | -class Router{ |
|
| 7 | +class Router { |
|
| 8 | 8 | use Helper, CheckTrait; |
| 9 | 9 | |
| 10 | 10 | private static $instance = null; |
@@ -59,12 +59,12 @@ discard block |
||
| 59 | 59 | return self::getInstance()->set($uri, $walking, $protocol); |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - public function set($url ,$walking , string $protocol): Router |
|
| 62 | + public function set($url, $walking, string $protocol): Router |
|
| 63 | 63 | { |
| 64 | - $url = (substr($url,0,1) !=='/' and strlen($url) > 0) ? "/{$url}" : $url; |
|
| 64 | + $url = (substr($url, 0, 1) !== '/' and strlen($url) > 0) ? "/{$url}" : $url; |
|
| 65 | 65 | |
| 66 | - foreach($this->routers as $key => $value){ |
|
| 67 | - if( md5($this->prefix . $value['url'] . $value['protocol'] ) === md5( $url . $protocol ) ){ |
|
| 66 | + foreach ($this->routers as $key => $value) { |
|
| 67 | + if (md5($this->prefix.$value['url'].$value['protocol']) === md5($url.$protocol)) { |
|
| 68 | 68 | throw new Exception("There is already a route with the url {$url} and with the {$protocol} protocol configured."); |
| 69 | 69 | } |
| 70 | 70 | } |
@@ -84,9 +84,9 @@ discard block |
||
| 84 | 84 | return self::getInstance(); |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - public static function group(string $prefix,$callback): Router |
|
| 87 | + public static function group(string $prefix, $callback): Router |
|
| 88 | 88 | { |
| 89 | - self::getInstance()->prefix = (substr($prefix,0,1) !== '/') ? "/{$prefix}" : $prefix; |
|
| 89 | + self::getInstance()->prefix = (substr($prefix, 0, 1) !== '/') ? "/{$prefix}" : $prefix; |
|
| 90 | 90 | self::getInstance()->group = sha1(date('d/m/Y h:m:i')); |
| 91 | 91 | $callback(); |
| 92 | 92 | self::getInstance()->group = null; |
@@ -98,14 +98,14 @@ discard block |
||
| 98 | 98 | public static function name(string $name): Router |
| 99 | 99 | { |
| 100 | 100 | |
| 101 | - if(self::getInstance()->lastReturn){ |
|
| 101 | + if (self::getInstance()->lastReturn) { |
|
| 102 | 102 | throw new Exception("There is no reason to call a {$name} route group."); |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | $currentRoute = end(self::getInstance()->routers); |
| 106 | 106 | |
| 107 | - foreach(self::getInstance()->routers as $key => $value){ |
|
| 108 | - if(array_key_exists($name, self::getInstance()->routers)){ |
|
| 107 | + foreach (self::getInstance()->routers as $key => $value) { |
|
| 108 | + if (array_key_exists($name, self::getInstance()->routers)) { |
|
| 109 | 109 | throw new Exception("There is already a route with the name {$name} configured."); |
| 110 | 110 | } |
| 111 | 111 | } |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | |
| 122 | 122 | private function byName(?string $route_name) |
| 123 | 123 | { |
| 124 | - if(!is_null($route_name)){ |
|
| 124 | + if (!is_null($route_name)) { |
|
| 125 | 125 | $currentProtocol = $this->getProtocol(); |
| 126 | 126 | |
| 127 | 127 | $this->check_name($route_name); |
@@ -143,15 +143,15 @@ discard block |
||
| 143 | 143 | |
| 144 | 144 | $currentProtocol = $this->getProtocol(); |
| 145 | 145 | |
| 146 | - foreach(array_reverse($this->routers) as $r => $route){ |
|
| 146 | + foreach (array_reverse($this->routers) as $r => $route) { |
|
| 147 | 147 | |
| 148 | 148 | $this->hasProtocol($route, $currentProtocol); |
| 149 | 149 | |
| 150 | - $route_loop = $this->explodeRoute( (substr($route['url'],strlen($route['url'])-1,1) === '/') , $route['url']); |
|
| 150 | + $route_loop = $this->explodeRoute((substr($route['url'], strlen($route['url'])-1, 1) === '/'), $route['url']); |
|
| 151 | 151 | |
| 152 | - $route_request = $this->explodeRoute((substr($_SERVER['REQUEST_URI'],strlen($_SERVER['REQUEST_URI'])-1,1) === '/') , $_SERVER['REQUEST_URI']); |
|
| 152 | + $route_request = $this->explodeRoute((substr($_SERVER['REQUEST_URI'], strlen($_SERVER['REQUEST_URI'])-1, 1) === '/'), $_SERVER['REQUEST_URI']); |
|
| 153 | 153 | |
| 154 | - if($this->check_numparams($route_loop, $route_request) || !$this->check_parameters($route_loop, $route_request)){ |
|
| 154 | + if ($this->check_numparams($route_loop, $route_request) || !$this->check_parameters($route_loop, $route_request)) { |
|
| 155 | 155 | continue; |
| 156 | 156 | } |
| 157 | 157 | |
@@ -161,18 +161,18 @@ discard block |
||
| 161 | 161 | return true; |
| 162 | 162 | } |
| 163 | 163 | |
| 164 | - throw new Exception('Page not found.',404); |
|
| 164 | + throw new Exception('Page not found.', 404); |
|
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | public static function filter($filters): Router |
| 168 | 168 | { |
| 169 | - if(self::getInstance()->lastReturn !== null){ |
|
| 169 | + if (self::getInstance()->lastReturn !== null) { |
|
| 170 | 170 | $currentGroup = end(self::getInstance()->routers)['group']; |
| 171 | 171 | |
| 172 | 172 | foreach (self::getInstance()->routers as $key => $value) { |
| 173 | 173 | |
| 174 | - if($value['group'] === $currentGroup){ |
|
| 175 | - $currentRoute = self::getInstance()->addFilter(self::getInstance()->routers[$key],$filters); |
|
| 174 | + if ($value['group'] === $currentGroup) { |
|
| 175 | + $currentRoute = self::getInstance()->addFilter(self::getInstance()->routers[$key], $filters); |
|
| 176 | 176 | self::getInstance()->routers[$key] = $currentRoute; |
| 177 | 177 | } |
| 178 | 178 | |
@@ -181,24 +181,24 @@ discard block |
||
| 181 | 181 | return self::getInstance(); |
| 182 | 182 | } |
| 183 | 183 | |
| 184 | - self::getInstance()->routers[count(self::getInstance()->routers)-1] = self::getInstance()->addFilter(end(self::getInstance()->routers),$filters); |
|
| 184 | + self::getInstance()->routers[count(self::getInstance()->routers)-1] = self::getInstance()->addFilter(end(self::getInstance()->routers), $filters); |
|
| 185 | 185 | return self::getInstance(); |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | public static function addFilter(array $route, $filter): array |
| 189 | 189 | { |
| 190 | - if(is_null($route['filters'])){ |
|
| 190 | + if (is_null($route['filters'])) { |
|
| 191 | 191 | $route['filters'] = $filter; |
| 192 | 192 | return $route; |
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | $filters = (is_array($filter)) ? $filter : [0 => $filter]; |
| 196 | 196 | |
| 197 | - if(is_array($route['filters'])){ |
|
| 197 | + if (is_array($route['filters'])) { |
|
| 198 | 198 | foreach ($route['filters'] as $key => $value) { |
| 199 | 199 | $filters[] = $value; |
| 200 | 200 | } |
| 201 | - }else{ |
|
| 201 | + }else { |
|
| 202 | 202 | $filters[] = $route['filters']; |
| 203 | 203 | } |
| 204 | 204 | |
@@ -4,13 +4,13 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | use Exception; |
| 6 | 6 | |
| 7 | -trait FilterTrait{ |
|
| 7 | +trait FilterTrait { |
|
| 8 | 8 | protected function check_filtering(array $route) |
| 9 | 9 | { |
| 10 | - $filters = (is_array($route['filters'])) ? $route['filters'] : [ $route['filters'] ]; |
|
| 10 | + $filters = (is_array($route['filters'])) ? $route['filters'] : [$route['filters']]; |
|
| 11 | 11 | |
| 12 | - foreach($filters as $filter){ |
|
| 13 | - if(is_null($filter)){ |
|
| 12 | + foreach ($filters as $filter) { |
|
| 13 | + if (is_null($filter)) { |
|
| 14 | 14 | continue; |
| 15 | 15 | } |
| 16 | 16 | $this->check_filter($filter); |
@@ -19,24 +19,24 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | protected function check_filter(string $filtername) |
| 21 | 21 | { |
| 22 | - if(count(explode(':',$filtername)) != 2){ |
|
| 22 | + if (count(explode(':', $filtername)) != 2) { |
|
| 23 | 23 | throw new Exception("Wrongly configured filter: {$filtername}."); |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | - $filter = $this->check_filClassExist(explode(':',$filtername)[0]); |
|
| 26 | + $filter = $this->check_filClassExist(explode(':', $filtername)[0]); |
|
| 27 | 27 | |
| 28 | - if(!$filter->check(explode(':',$filtername)[1])){ |
|
| 29 | - throw new Exception($filter->getMessage(explode(':',$filtername)[1])); |
|
| 28 | + if (!$filter->check(explode(':', $filtername)[1])) { |
|
| 29 | + throw new Exception($filter->getMessage(explode(':', $filtername)[1])); |
|
| 30 | 30 | } |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | protected function check_filClassExist(string $class) |
| 34 | 34 | { |
| 35 | - if(class_exists("HnrAzevedo\\Filter\\{$class}")){ |
|
| 35 | + if (class_exists("HnrAzevedo\\Filter\\{$class}")) { |
|
| 36 | 36 | $filter = "HnrAzevedo\\Filter\\{$class}"; |
| 37 | 37 | return new $filter(); |
| 38 | 38 | } |
| 39 | - if(file_exists(ROUTER_CONFIG['path.filters'].$class.'.php')){ |
|
| 39 | + if (file_exists(ROUTER_CONFIG['path.filters'].$class.'.php')) { |
|
| 40 | 40 | require_once(ROUTER_CONFIG['path.filters'].$class.'.php'); |
| 41 | 41 | $filter = "HnrAzevedo\\Filter\\{$class}"; |
| 42 | 42 | return new $filter(); |
@@ -2,15 +2,15 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace HnrAzevedo\Filter; |
| 4 | 4 | |
| 5 | -class User extends Filter{ |
|
| 5 | +class User extends Filter { |
|
| 6 | 6 | |
| 7 | 7 | public function user_in(): bool |
| 8 | 8 | { |
| 9 | - $this->addMessage('user_in','User required to be logged in.'); |
|
| 9 | + $this->addMessage('user_in', 'User required to be logged in.'); |
|
| 10 | 10 | |
| 11 | - $this->addTreat('user_in','report_notLogged'); |
|
| 11 | + $this->addTreat('user_in', 'report_notLogged'); |
|
| 12 | 12 | |
| 13 | - return (array_key_exists('user',$_SESSION)); |
|
| 13 | + return (array_key_exists('user', $_SESSION)); |
|
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | public function report_notLogged(): void |
@@ -4,28 +4,28 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Exception; |
| 6 | 6 | |
| 7 | -trait ControllerTrait{ |
|
| 7 | +trait ControllerTrait { |
|
| 8 | 8 | |
| 9 | 9 | protected function check_controllsettable(string $controll) |
| 10 | 10 | { |
| 11 | - if(count(explode(':',$controll)) != 2){ |
|
| 11 | + if (count(explode(':', $controll)) != 2) { |
|
| 12 | 12 | throw new Exception("Controller {$controll} badly set."); |
| 13 | 13 | } |
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | protected function check_controllexist(string $controll) |
| 17 | 17 | { |
| 18 | - $controllname = ROUTER_CONFIG['controller.namespace'].'\\'.ucfirst(explode(':',$controll)[0]); |
|
| 19 | - if(!class_exists($controllname)){ |
|
| 18 | + $controllname = ROUTER_CONFIG['controller.namespace'].'\\'.ucfirst(explode(':', $controll)[0]); |
|
| 19 | + if (!class_exists($controllname)) { |
|
| 20 | 20 | throw new Exception("No controller {$controllname} found."); |
| 21 | 21 | } |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | protected function check_controllmethod(string $controll) |
| 25 | 25 | { |
| 26 | - $controllname = ROUTER_CONFIG['controller.namespace'].'\\'.ucfirst(explode(':',$controll)[0]); |
|
| 27 | - $method = explode(':',$controll)[1]; |
|
| 28 | - if(!method_exists($controllname, $method)){ |
|
| 26 | + $controllname = ROUTER_CONFIG['controller.namespace'].'\\'.ucfirst(explode(':', $controll)[0]); |
|
| 27 | + $method = explode(':', $controll)[1]; |
|
| 28 | + if (!method_exists($controllname, $method)) { |
|
| 29 | 29 | throw new Exception("No method {$method} found for {$controllname}."); |
| 30 | 30 | } |
| 31 | 31 | } |
@@ -2,7 +2,7 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Example\Controllers; |
| 4 | 4 | |
| 5 | -class User{ |
|
| 5 | +class User { |
|
| 6 | 6 | |
| 7 | 7 | public function my_account(array $data): void |
| 8 | 8 | { |
@@ -3,30 +3,30 @@ |
||
| 3 | 3 | use HnrAzevedo\Router\Router; |
| 4 | 4 | |
| 5 | 5 | |
| 6 | -Router::get('/{teste}',function(){ |
|
| 6 | +Router::get('/{teste}', function() { |
|
| 7 | 7 | echo 'teste'; |
| 8 | 8 | }); |
| 9 | 9 | |
| 10 | -Router::get('/1',function(){ |
|
| 10 | +Router::get('/1', function() { |
|
| 11 | 11 | echo 1; |
| 12 | 12 | }); |
| 13 | 13 | |
| 14 | -Router::get('/3',function(){ |
|
| 14 | +Router::get('/3', function() { |
|
| 15 | 15 | echo 3; |
| 16 | 16 | }); |
| 17 | 17 | |
| 18 | 18 | /* Returning parameters passed via URL in anonymous functions */ |
| 19 | -Router::get('/{parameter}/{otherparameter}', function($data){ |
|
| 19 | +Router::get('/{parameter}/{otherparameter}', function($data) { |
|
| 20 | 20 | echo "Parameter 1:{$data['parameter']}, Parameter 2:{$data['otherparameter']}."; |
| 21 | 21 | }); |
| 22 | 22 | |
| 23 | 23 | /* Passing controller and/or method via parameter in URL */ |
| 24 | -Router::get('/{controller}/{method}','{controller}:{method}'); |
|
| 24 | +Router::get('/{controller}/{method}', '{controller}:{method}'); |
|
| 25 | 25 | |
| 26 | 26 | /* Passing value via parameter */ |
| 27 | -Router::get('/my-account/{teste}','User:my_account'); |
|
| 27 | +Router::get('/my-account/{teste}', 'User:my_account'); |
|
| 28 | 28 | |
| 29 | 29 | /* Filter example */ |
| 30 | -Router::get('/my-account','User:my_account')->filter('User:user_in'); |
|
| 30 | +Router::get('/my-account', 'User:my_account')->filter('User:user_in'); |
|
| 31 | 31 | |
| 32 | 32 | |
@@ -2,16 +2,16 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | namespace HnrAzevedo\Router; |
| 4 | 4 | |
| 5 | -trait Helper{ |
|
| 5 | +trait Helper { |
|
| 6 | 6 | use CheckTrait, ControllerTrait; |
| 7 | 7 | |
| 8 | 8 | protected function getProtocol(): string |
| 9 | 9 | { |
| 10 | - if((isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest')){ |
|
| 10 | + if ((isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest')) { |
|
| 11 | 11 | return 'ajax'; |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | - return (array_key_existS('REQUEST_METHOD',$_SESSION)) ? strtolower($_SERVER['REQUEST_METHOD']) : 'get'; |
|
| 14 | + return (array_key_existS('REQUEST_METHOD', $_SESSION)) ? strtolower($_SERVER['REQUEST_METHOD']) : 'get'; |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | protected function getData(): ?array |
@@ -27,13 +27,13 @@ discard block |
||
| 27 | 27 | protected function import(string $path) |
| 28 | 28 | { |
| 29 | 29 | foreach (scandir($path) as $routeFile) { |
| 30 | - if(pathinfo($path.DIRECTORY_SEPARATOR.$routeFile, PATHINFO_EXTENSION) === 'php'){ |
|
| 31 | - require_once($path. DIRECTORY_SEPARATOR .$routeFile); |
|
| 30 | + if (pathinfo($path.DIRECTORY_SEPARATOR.$routeFile, PATHINFO_EXTENSION) === 'php') { |
|
| 31 | + require_once($path.DIRECTORY_SEPARATOR.$routeFile); |
|
| 32 | 32 | } |
| 33 | 33 | } |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | - protected function ControllerForm($controller, string $method, array $values){ |
|
| 36 | + protected function ControllerForm($controller, string $method, array $values) { |
|
| 37 | 37 | $this->check_role(); |
| 38 | 38 | $role = ($method !== 'method') ? $method : $this->getData()['POST']['role']; |
| 39 | 39 | $data = (!is_null($values)) ? json_decode($values['data']) : null; |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | $data = $this->getData(); |
| 46 | 46 | |
| 47 | 47 | foreach ($data['GET'] as $name => $value) { |
| 48 | - $controll = str_replace('{'.$name.'}',$value,$controll); |
|
| 48 | + $controll = str_replace('{'.$name.'}', $value, $controll); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | $this->check_controllsettable($controll); |
@@ -54,11 +54,11 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | $this->check_controllmethod($controll); |
| 56 | 56 | |
| 57 | - $controller = ROUTER_CONFIG['controller.namespace'].'\\'. ucfirst(explode(':',$controll)[0]); |
|
| 57 | + $controller = ROUTER_CONFIG['controller.namespace'].'\\'.ucfirst(explode(':', $controll)[0]); |
|
| 58 | 58 | $controller = new $controller(); |
| 59 | - $method = explode(':',$controll)[1]; |
|
| 59 | + $method = explode(':', $controll)[1]; |
|
| 60 | 60 | |
| 61 | - if( ( $this->getProtocol() == 'form') ){ |
|
| 61 | + if (($this->getProtocol() == 'form')) { |
|
| 62 | 62 | $this->ControllerForm($controller, $method, $data['POST']); |
| 63 | 63 | }else { |
| 64 | 64 | $controller->$method($data); |
@@ -67,12 +67,12 @@ discard block |
||
| 67 | 67 | |
| 68 | 68 | protected function explodeRoute(bool $bar, string $url): array |
| 69 | 69 | { |
| 70 | - return explode( '/', $bar ? substr($url, 0, -1) : $url ); |
|
| 70 | + return explode('/', $bar ? substr($url, 0, -1) : $url); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | protected function toHiking($walking) |
| 74 | 74 | { |
| 75 | - if(is_string($walking)){ |
|
| 75 | + if (is_string($walking)) { |
|
| 76 | 76 | $this->Controller($walking); |
| 77 | 77 | return true; |
| 78 | 78 | } |