Passed
Push — master ( 8507f0...24256b )
by Henri
01:40
created
examples/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 /* NOTE: in case of error an exception is thrown */
11 11
 
12
-try{
12
+try {
13 13
     
14 14
     Router::dispatch();
15 15
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     /* Return current action route */
21 21
     $action = Router::currentRouteAction();
22 22
 
23
-}catch(Exception $er){
23
+}catch (Exception $er) {
24 24
 
25 25
     die("Code Error: {$er->getCode()}, Line: {$er->getLine()}, File: {$er->getFile()}, Message: {$er->getMessage()}.");
26 26
 
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 requereLogin($username, $password): void
10 10
     {
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
@@ -4,15 +4,15 @@
 block discarded – undo
4 4
 
5 5
 use HnrAzevedo\Filter\Filter as HnrFilter;
6 6
 
7
-class User extends HnrFilter{
7
+class User extends HnrFilter {
8 8
 
9 9
     public function user_in(): bool
10 10
     {
11
-        $this->addMessage('user_in','User required to be logged in.');
11
+        $this->addMessage('user_in', 'User required to be logged in.');
12 12
 
13
-        $this->addTreat('user_in','report_notLogged');
13
+        $this->addTreat('user_in', 'report_notLogged');
14 14
 
15
-        return (array_key_exists('user',$_SESSION));
15
+        return (array_key_exists('user', $_SESSION));
16 16
     }
17 17
 
18 18
     public function report_notLogged(): void
Please login to merge, or discard this patch.
examples/Routes/default.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -3,21 +3,21 @@
 block discarded – undo
3 3
 use HnrAzevedo\Router\Router;
4 4
 
5 5
 /* Returning parameters passed via URL in anonymous functions */
6
-Router::get('/{parameter}/{otherparameter}', function($parameter, $otherparameter){
6
+Router::get('/{parameter}/{otherparameter}', function($parameter, $otherparameter) {
7 7
     echo "Parameter 1:{$parameter}, Parameter 2:{$otherparameter}.";
8 8
 });
9 9
 
10 10
 /* Passing controller and/or method via parameter in URL */
11
-Router::get('/{controller}/{method}','{controller}:{method}');
12
-Router::get('/{controller}/{method}','{controller}:method');
11
+Router::get('/{controller}/{method}', '{controller}:{method}');
12
+Router::get('/{controller}/{method}', '{controller}:method');
13 13
 
14 14
 /* Passing value via parameter */
15
-Router::get('/my-account/{teste}','User:my_account');
15
+Router::get('/my-account/{teste}', 'User:my_account');
16 16
 
17 17
 /* Filter example */
18
-Router::get('/my-account','User:my_account')->filter('User:user_in');
18
+Router::get('/my-account', 'User:my_account')->filter('User:user_in');
19 19
 
20 20
 /* Accessed by all protocols */
21
-Router::any('/',function(){
21
+Router::any('/', function() {
22 22
     //
23 23
 });
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 checkControllsettable(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 checkControllexist(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 checkControllmethod(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.
src/FilterTrait.php 1 patch
Spacing   +9 added lines, -9 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 checkFiltering(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->checkFilter($filter);
@@ -19,20 +19,20 @@  discard block
 block discarded – undo
19 19
 
20 20
     protected function checkFilter(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->checkFilClassExist(explode(':',$filtername)[0]);
26
+        $filter = $this->checkFilClassExist(explode(':', $filtername)[0]);
27 27
 
28
-        if(!$filter->check(explode(':',$filtername)[1])){
29
-            throw new Exception($filter->getMessage(explode(':',$filtername)[1]),403);
28
+        if (!$filter->check(explode(':', $filtername)[1])) {
29
+            throw new Exception($filter->getMessage(explode(':', $filtername)[1]), 403);
30 30
         }
31 31
     }
32 32
 
33 33
     protected function checkFilClassExist(string $class)
34 34
     {
35
-        if(class_exists(ROUTER_CONFIG['filter.namespace']."\\{$class}")){
35
+        if (class_exists(ROUTER_CONFIG['filter.namespace']."\\{$class}")) {
36 36
             $filter = ROUTER_CONFIG['filter.namespace']."\\{$class}";
37 37
             return new $filter();
38 38
         }
Please login to merge, or discard this patch.
src/Controller.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -5,14 +5,14 @@  discard block
 block discarded – undo
5 5
 use HnrAzevedo\Validator\Validator;
6 6
 use Exception;
7 7
 
8
-class Controller{
8
+class Controller {
9 9
     use Helper;
10 10
 
11 11
     protected array $fail = [];
12 12
 
13 13
     private function checkMethod(string $method): void
14 14
     {
15
-        if(!method_exists($this,$method)){
15
+        if (!method_exists($this, $method)) {
16 16
             throw new Exception("{$method} not found in ".get_class($this).".");
17 17
         }
18 18
     }
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     {        
22 22
         $this->ValidateData();
23 23
 
24
-        if($this->checkFailData()){
24
+        if ($this->checkFailData()) {
25 25
             return false;
26 26
         }
27 27
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
         $this->checkMethod($method);
31 31
 
32
-        call_user_func_array([$this,$method],  func_get_args());
32
+        call_user_func_array([$this, $method], func_get_args());
33 33
 
34 34
         return true;
35 35
     }
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
     {
39 39
         $valid = Validator::execute($this->getData()['POST']);
40 40
 
41
-        if(!$valid){
42
-            foreach(Validator::getErrors() as $err => $message){
41
+        if (!$valid) {
42
+            foreach (Validator::getErrors() as $err => $message) {
43 43
                 $this->fail[] = [
44 44
                     'input' => array_keys($message)[0],
45 45
                     'message' => $message[array_keys($message)[0]]
@@ -50,12 +50,12 @@  discard block
 block discarded – undo
50 50
 
51 51
     private function checkFailData(): bool
52 52
     {
53
-        if(count($this->fail) > 0 ){
53
+        if (count($this->fail) > 0) {
54 54
             echo json_encode([
55 55
                 'error'=> $this->fail
56 56
             ]);
57 57
         }
58
-        return (count($this->fail) > 0 );
58
+        return (count($this->fail) > 0);
59 59
     }
60 60
 
61 61
 }
62 62
\ No newline at end of file
Please login to merge, or discard this patch.
src/DefinitionsTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace HnrAzevedo\Router;
4 4
 
5
-trait DefinitionsTrait{
5
+trait DefinitionsTrait {
6 6
     private static $instance = null;
7 7
 
8 8
     public static function match(string $protocols, string $uri, $walking): Router
9 9
     {
10
-        foreach(explode('|',$protocols) as $protocol){
10
+        foreach (explode('|', $protocols) as $protocol) {
11 11
             self::getInstance()->add($uri, $walking, $protocol);
12 12
         }
13 13
         return self::$instance;
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,7 +4,7 @@  discard block
 block discarded – undo
4 4
 
5 5
 use Exception;
6 6
 
7
-trait CheckTrait{
7
+trait CheckTrait {
8 8
     use FilterTrait, CheckWhere;
9 9
 
10 10
     protected function checkProtocol(string $expected, string $current): bool
@@ -12,21 +12,21 @@  discard block
 block discarded – undo
12 12
         return (strtoupper($expected) === strtoupper($current));
13 13
     }
14 14
 
15
-    protected function checkName(string $routeName){
16
-        if(!array_key_exists($routeName,$this->routers)){
15
+    protected function checkName(string $routeName) {
16
+        if (!array_key_exists($routeName, $this->routers)) {
17 17
             throw new Exception('Page not found.', 404);
18 18
         }
19 19
     }
20 20
 
21
-    protected function checkTypeRole($role){
22
-        if(!is_string($role) && @get_class($role) !== 'Closure' ){
21
+    protected function checkTypeRole($role) {
22
+        if (!is_string($role) && @get_class($role) !== 'Closure') {
23 23
             throw new Exception("Improperly defined route track.");
24 24
         }
25 25
     }
26 26
 
27 27
     protected function checkConfig()
28 28
     {
29
-        if(!defined('ROUTER_CONFIG')){
29
+        if (!defined('ROUTER_CONFIG')) {
30 30
             throw new Exception("Information for loading routes has not been defined.");
31 31
         }
32 32
     }
@@ -38,12 +38,12 @@  discard block
 block discarded – undo
38 38
 
39 39
     protected function checkParameters(array $routeLoop, array $routeRequest): bool
40 40
     {
41
-        foreach($routeLoop as $rr => $param){
42
-            if( (substr($param,0,1) === '{') ){
43
-                $_GET[ substr($param,1,strlen($param)-2) ] = $routeRequest[$rr];    
41
+        foreach ($routeLoop as $rr => $param) {
42
+            if ((substr($param, 0, 1) === '{')) {
43
+                $_GET[substr($param, 1, strlen($param)-2)] = $routeRequest[$rr];    
44 44
             }
45 45
     
46
-            if($this->checkParameter($param, $routeRequest[$rr])){
46
+            if ($this->checkParameter($param, $routeRequest[$rr])) {
47 47
                 return false;
48 48
             }
49 49
         }
@@ -52,22 +52,22 @@  discard block
 block discarded – undo
52 52
 
53 53
     protected function checkParameter(string $routeLoop, string $routeRequest)
54 54
     {
55
-        return !( substr($routeLoop,0,1) === '{' ) and $routeLoop !== $routeRequest;
55
+        return !(substr($routeLoop, 0, 1) === '{') and $routeLoop !== $routeRequest;
56 56
     }
57 57
 
58 58
     protected function checkRole()
59 59
     {
60
-        if(!array_key_exists('role', $this->getData()['POST'])){
60
+        if (!array_key_exists('role', $this->getData()['POST'])) {
61 61
             throw new Exception('O servidor não conseguiu identificar a finalidade deste formulário.');
62 62
         }
63 63
     }
64 64
 
65 65
     protected function hasProtocol(array $route, string $currentProtocol)
66 66
     {
67
-        $protocols = ( is_array($route['protocol']) ) ? $route['protocol'] : [ $route['protocol'] ];
67
+        $protocols = (is_array($route['protocol'])) ? $route['protocol'] : [$route['protocol']];
68 68
 
69
-        foreach($protocols as $protocol){
70
-            if(strtoupper($protocol) !== strtoupper($currentProtocol)){
69
+        foreach ($protocols as $protocol) {
70
+            if (strtoupper($protocol) !== strtoupper($currentProtocol)) {
71 71
                 continue;
72 72
             }
73 73
         }
@@ -75,9 +75,9 @@  discard block
 block discarded – undo
75 75
 
76 76
     protected function checkToHiking($route, $routeRequest, $routeLoop): bool
77 77
     {
78
-        if($this->checkNumparams($routeLoop, $routeRequest) || 
78
+        if ($this->checkNumparams($routeLoop, $routeRequest) || 
79 79
             !$this->checkParameters($routeLoop, $routeRequest) ||
80
-            !$this->checkWhere($route, $routeRequest)){
80
+            !$this->checkWhere($route, $routeRequest)) {
81 81
                 return false;
82 82
         }
83 83
         return true;
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
     protected function hasRouteName(string $name): void
87 87
     {
88
-        if(array_key_exists($name, $this->routers)){
88
+        if (array_key_exists($name, $this->routers)) {
89 89
             throw new Exception("There is already a route with the name {$name} configured.");
90 90
         }
91 91
     }
Please login to merge, or discard this patch.