Passed
Push — master ( ea3f7c...444b60 )
by Henri
01:24
created
examples/index.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Helper.php 3 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
 
71 71
         if( ( $this->getProtocol() == 'form') ){
72 72
             $this->ControllerForm($controller, $method, $data['POST']);
73
-        }else {
73
+        } else {
74 74
             $controller->$method($data);
75 75
         }
76 76
     }    
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     }
34 34
 
35 35
     protected function ControllerForm($controller, string $method, array $values){
36
-		$this->check_role();
36
+        $this->check_role();
37 37
         $role = ($method !== 'method') ? $method : $this->getData()['POST']['role'];
38 38
         $data = (!is_null($values)) ? json_decode($values['data']) : null;
39 39
         $controller->$role($data);
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -2,16 +2,16 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Router.php 3 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -217,7 +217,7 @@
 block discarded – undo
217 217
             foreach ($route['filters'] as $key => $value) {
218 218
                 $filters[] = $value;
219 219
             }
220
-        }else{
220
+        } else{
221 221
             $filters[] = $route['filters'];
222 222
         }
223 223
 
Please login to merge, or discard this patch.
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -61,25 +61,25 @@  discard block
 block discarded – undo
61 61
 
62 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
         }
71 71
         
72 72
         $this->check_typeRole($walking);
73 73
 
74
-		$route = [
75
-			'url' => $this->prefix.$url,
76
-			'role' => $walking,
77
-			'protocol' => $protocol,
78
-			'filters' => null,
74
+        $route = [
75
+            'url' => $this->prefix.$url,
76
+            'role' => $walking,
77
+            'protocol' => $protocol,
78
+            'filters' => null,
79 79
             'group' => self::getInstance()->group
80
-		];
80
+        ];
81 81
 
82
-		$this->routers[] = $route;		
82
+        $this->routers[] = $route;		
83 83
         
84 84
         return self::getInstance();
85 85
     }
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     {
142 142
         $this->byName($route_name);
143 143
 
144
-		$currentProtocol = $this->getProtocol();
144
+        $currentProtocol = $this->getProtocol();
145 145
 
146 146
         foreach(array_reverse($this->routers) as $r => $route){
147 147
 
@@ -151,17 +151,17 @@  discard block
 block discarded – undo
151 151
             
152 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
             
158 158
             $this->check_filtering($route);
159 159
 
160 160
             $this->toHiking($route['role']);
161
-	        return true;
162
-	    }
161
+            return true;
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
Please login to merge, or discard this patch.
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
@@ -97,14 +97,14 @@  discard block
 block discarded – undo
97 97
 
98 98
     public static function name(string $name): Router
99 99
     {
100
-        if(self::getInstance()->lastReturn){
100
+        if (self::getInstance()->lastReturn) {
101 101
             throw new Exception("There is no reason to call a {$name} route group.");
102 102
         }
103 103
 
104 104
         $currentRoute = end(self::getInstance()->routers);
105 105
 
106
-        foreach(self::getInstance()->routers as $key => $value){
107
-            if(array_key_exists($name, self::getInstance()->routers)){
106
+        foreach (self::getInstance()->routers as $key => $value) {
107
+            if (array_key_exists($name, self::getInstance()->routers)) {
108 108
                 throw new Exception("There is already a route with the name {$name} configured.");
109 109
             }
110 110
         }
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
     private function byName(?string $route_name)
122 122
     {
123
-        if(!is_null($route_name)){
123
+        if (!is_null($route_name)) {
124 124
             $currentProtocol = $this->getProtocol();
125 125
 
126 126
             $this->check_name($route_name);
@@ -142,17 +142,17 @@  discard block
 block discarded – undo
142 142
 
143 143
 		$currentProtocol = $this->getProtocol();
144 144
 
145
-        foreach(array_reverse($this->routers) as $r => $route){
145
+        foreach (array_reverse($this->routers) as $r => $route) {
146 146
 
147 147
             $this->hasProtocol($route, $currentProtocol);
148 148
 
149
-            $route_loop = $this->explodeRoute( (substr($route['url'],strlen($route['url'])-1,1) === '/') , $route['url']);
149
+            $route_loop = $this->explodeRoute((substr($route['url'], strlen($route['url'])-1, 1) === '/'), $route['url']);
150 150
             
151 151
             $_SERVER['REQUEST_URI'] = (array_key_exists('REQUEST_URI', $_SERVER)) ? $_SERVER['REQUEST_URI'] : '';
152 152
 
153
-            $route_request = $this->explodeRoute((substr($_SERVER['REQUEST_URI'],strlen($_SERVER['REQUEST_URI'])-1,1) === '/') , $_SERVER['REQUEST_URI']);
153
+            $route_request = $this->explodeRoute((substr($_SERVER['REQUEST_URI'], strlen($_SERVER['REQUEST_URI'])-1, 1) === '/'), $_SERVER['REQUEST_URI']);
154 154
 
155
-	        if($this->check_numparams($route_loop, $route_request) || !$this->check_parameters($route_loop, $route_request)){
155
+	        if ($this->check_numparams($route_loop, $route_request) || !$this->check_parameters($route_loop, $route_request)) {
156 156
                 continue;
157 157
             }
158 158
             
@@ -162,18 +162,18 @@  discard block
 block discarded – undo
162 162
 	        return true;
163 163
 	    }
164 164
 
165
-	    throw new Exception('Page not found.',404);
165
+	    throw new Exception('Page not found.', 404);
166 166
     }
167 167
 
168 168
     public static function filter($filters): Router
169 169
     {
170
-        if(self::getInstance()->lastReturn !== null){
170
+        if (self::getInstance()->lastReturn !== null) {
171 171
             $currentGroup = end(self::getInstance()->routers)['group'];
172 172
 
173 173
             foreach (self::getInstance()->routers as $key => $value) {
174 174
 
175
-                if($value['group'] === $currentGroup){
176
-                    $currentRoute = self::getInstance()->addFilter(self::getInstance()->routers[$key],$filters);
175
+                if ($value['group'] === $currentGroup) {
176
+                    $currentRoute = self::getInstance()->addFilter(self::getInstance()->routers[$key], $filters);
177 177
                     self::getInstance()->routers[$key] = $currentRoute;
178 178
                 }
179 179
 
@@ -182,24 +182,24 @@  discard block
 block discarded – undo
182 182
             return self::getInstance();
183 183
         }
184 184
         
185
-        self::getInstance()->routers[count(self::getInstance()->routers)-1] = self::getInstance()->addFilter(end(self::getInstance()->routers),$filters);
185
+        self::getInstance()->routers[count(self::getInstance()->routers)-1] = self::getInstance()->addFilter(end(self::getInstance()->routers), $filters);
186 186
         return self::getInstance();
187 187
     }
188 188
 
189 189
     public static function addFilter(array $route, $filter): array
190 190
     {
191
-        if(is_null($route['filters'])){
191
+        if (is_null($route['filters'])) {
192 192
             $route['filters'] = $filter;
193 193
             return $route;
194 194
         }
195 195
 
196 196
         $filters = (is_array($filter)) ? $filter : [0 => $filter];
197 197
 
198
-        if(is_array($route['filters'])){
198
+        if (is_array($route['filters'])) {
199 199
             foreach ($route['filters'] as $key => $value) {
200 200
                 $filters[] = $value;
201 201
             }
202
-        }else{
202
+        }else {
203 203
             $filters[] = $route['filters'];
204 204
         }
205 205
 
Please login to merge, or discard this patch.
src/CheckTrait.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -4,31 +4,31 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/FilterTrait.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -4,13 +4,13 @@  discard block
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
examples/Filters/User.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,15 +2,15 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/ControllerTrait.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -4,28 +4,28 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
examples/Routes/default.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -3,30 +3,30 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
examples/Controllers/User.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use HnrAzevedo\Router\Controller;
6 6
 
7
-class User extends Controller{
7
+class User extends Controller {
8 8
 
9 9
     public function my_account(array $data): void
10 10
     {
Please login to merge, or discard this patch.