Completed
Push — master ( 5d4ad8...2aa3b5 )
by Sinnarasa
04:30
created
src/Routing/Dispatcher/DispatcherInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * @param Route $route
17 17
      */
18
-    public function __construct(Route $route,ResponseInterface $response);
18
+    public function __construct(Route $route, ResponseInterface $response);
19 19
 
20 20
     /**
21 21
      * @return mixed
Please login to merge, or discard this patch.
src/Routing/Route.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      */
128 128
     public function setDetail($detail)
129 129
     {
130
-        $this->detail = array_merge($detail,$this->detail);
130
+        $this->detail = array_merge($detail, $this->detail);
131 131
     }
132 132
 
133 133
     /**
@@ -173,8 +173,8 @@  discard block
 block discarded – undo
173 173
     /**
174 174
      * @return array
175 175
      */
176
-    public function getData(){
177
-        return (isset($this->getDetail()['data']) && is_array($this->getDetail()['data']))?$this->getDetail()['data']:[];
176
+    public function getData() {
177
+        return (isset($this->getDetail()['data']) && is_array($this->getDetail()['data'])) ? $this->getDetail()['data'] : [];
178 178
     }
179 179
 
180 180
     /**
Please login to merge, or discard this patch.
src/Routing/Matcher/MatcherInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,5 +41,5 @@
 block discarded – undo
41 41
      * @param $class
42 42
      * @return mixed
43 43
      */
44
-    public function addDispatcher($method,$class);
44
+    public function addDispatcher($method, $class);
45 45
 }
Please login to merge, or discard this patch.
src/Routing/Dispatcher/ClosureDispatcher.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     /**
26 26
      * @param Route $route
27 27
      */
28
-    public function __construct(Route $route,ResponseInterface $response)
28
+    public function __construct(Route $route, ResponseInterface $response)
29 29
     {
30 30
         $this->route = $route;
31 31
         $this->response = $response;
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
             $this->response->setHeaders(['Content-Type' => 'text/html']);
43 43
         }
44 44
         $params = ($this->route->getParameters() == '') ? [] : $this->route->getParameters();
45
-        if(is_array($content = call_user_func_array($this->route->getTarget('closure'), $params))) $this->route->addTarget('data',$content);
46
-        elseif(!is_null($content)) $this->response->setContent($content);
45
+        if (is_array($content = call_user_func_array($this->route->getTarget('closure'), $params))) $this->route->addTarget('data', $content);
46
+        elseif (!is_null($content)) $this->response->setContent($content);
47 47
     }
48 48
 
49 49
 }
Please login to merge, or discard this patch.
src/Routing/Dispatcher/TemplateDispatcher.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * @param Route $route
38 38
      */
39
-    public function __construct(Route $route,ResponseInterface $response)
39
+    public function __construct(Route $route, ResponseInterface $response)
40 40
     {
41 41
         $this->route = $route;
42 42
         $this->response = $response;
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
             $this->response->setContent(call_user_func_array($this->route->getTarget('callback')[$this->route->getTarget('extension')], [$this->route]));
54 54
         else {
55 55
             ob_start();
56
-            if(isset($this->route->getTarget()['data']))extract($this->route->getTarget('data'));
57
-            if(isset($this->route->getParams()['data']))extract($this->route->getParams()['data']);
56
+            if (isset($this->route->getTarget()['data']))extract($this->route->getTarget('data'));
57
+            if (isset($this->route->getParams()['data']))extract($this->route->getParams()['data']);
58 58
             require($this->route->getTarget('template'));
59 59
             $this->response->setContent(ob_get_clean());
60 60
         }
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     /**
64 64
      * @param $extension
65 65
      */
66
-    public function setContentType($extension){
66
+    public function setContentType($extension) {
67 67
         $this->response->setStatusCode(200);
68 68
         isset($this->types[$extension])
69 69
             ? $this->response->setHeaders(['Content-Type' => $this->types[$extension]])
Please login to merge, or discard this patch.
src/Routing/Response.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * Class Response
8 8
  * @package JetFire\Routing
9 9
  */
10
-class Response implements ResponseInterface{
10
+class Response implements ResponseInterface {
11 11
 
12 12
     /**
13 13
      * @var array
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     public static $statusTexts = array(
54 54
         100 => 'Continue',
55 55
         101 => 'Switching Protocols',
56
-        102 => 'Processing',            // RFC2518
56
+        102 => 'Processing', // RFC2518
57 57
         200 => 'OK',
58 58
         201 => 'Created',
59 59
         202 => 'Accepted',
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
         204 => 'No Content',
62 62
         205 => 'Reset Content',
63 63
         206 => 'Partial Content',
64
-        207 => 'Multi-Status',          // RFC4918
65
-        208 => 'Already Reported',      // RFC5842
66
-        226 => 'IM Used',               // RFC3229
64
+        207 => 'Multi-Status', // RFC4918
65
+        208 => 'Already Reported', // RFC5842
66
+        226 => 'IM Used', // RFC3229
67 67
         300 => 'Multiple Choices',
68 68
         301 => 'Moved Permanently',
69 69
         302 => 'Found',
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         304 => 'Not Modified',
72 72
         305 => 'Use Proxy',
73 73
         307 => 'Temporary Redirect',
74
-        308 => 'Permanent Redirect',    // RFC7238
74
+        308 => 'Permanent Redirect', // RFC7238
75 75
         400 => 'Bad Request',
76 76
         401 => 'Unauthorized',
77 77
         402 => 'Payment Required',
@@ -90,26 +90,26 @@  discard block
 block discarded – undo
90 90
         415 => 'Unsupported Media Type',
91 91
         416 => 'Range Not Satisfiable',
92 92
         417 => 'Expectation Failed',
93
-        418 => 'I\'m a teapot',                                               // RFC2324
94
-        422 => 'Unprocessable Entity',                                        // RFC4918
95
-        423 => 'Locked',                                                      // RFC4918
96
-        424 => 'Failed Dependency',                                           // RFC4918
97
-        425 => 'Reserved for WebDAV advanced collections expired proposal',   // RFC2817
98
-        426 => 'Upgrade Required',                                            // RFC2817
99
-        428 => 'Precondition Required',                                       // RFC6585
100
-        429 => 'Too Many Requests',                                           // RFC6585
101
-        431 => 'Request Header Fields Too Large',                             // RFC6585
93
+        418 => 'I\'m a teapot', // RFC2324
94
+        422 => 'Unprocessable Entity', // RFC4918
95
+        423 => 'Locked', // RFC4918
96
+        424 => 'Failed Dependency', // RFC4918
97
+        425 => 'Reserved for WebDAV advanced collections expired proposal', // RFC2817
98
+        426 => 'Upgrade Required', // RFC2817
99
+        428 => 'Precondition Required', // RFC6585
100
+        429 => 'Too Many Requests', // RFC6585
101
+        431 => 'Request Header Fields Too Large', // RFC6585
102 102
         500 => 'Internal Server Error',
103 103
         501 => 'Not Implemented',
104 104
         502 => 'Bad Gateway',
105 105
         503 => 'Service Unavailable',
106 106
         504 => 'Gateway Timeout',
107 107
         505 => 'HTTP Version Not Supported',
108
-        506 => 'Variant Also Negotiates (Experimental)',                      // RFC2295
109
-        507 => 'Insufficient Storage',                                        // RFC4918
110
-        508 => 'Loop Detected',                                               // RFC5842
111
-        510 => 'Not Extended',                                                // RFC2774
112
-        511 => 'Network Authentication Required',                             // RFC6585
108
+        506 => 'Variant Also Negotiates (Experimental)', // RFC2295
109
+        507 => 'Insufficient Storage', // RFC4918
110
+        508 => 'Loop Detected', // RFC5842
111
+        510 => 'Not Extended', // RFC2774
112
+        511 => 'Network Authentication Required', // RFC6585
113 113
     );
114 114
 
115 115
     /**
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
      */
167 167
     public function sendHeaders()
168 168
     {
169
-        foreach($this->headers as $key => $content)
169
+        foreach ($this->headers as $key => $content)
170 170
             header($key.' : '.$content);
171 171
         http_response_code($this->getStatusCode());
172 172
         return $this;
Please login to merge, or discard this patch.
src/Routing/Router.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -49,14 +49,14 @@  discard block
 block discarded – undo
49 49
      * @param ResponseInterface $response
50 50
      * @param Route $route
51 51
      */
52
-    public function __construct(RouteCollection $collection,ResponseInterface $response = null,Route $route = null)
52
+    public function __construct(RouteCollection $collection, ResponseInterface $response = null, Route $route = null)
53 53
     {
54 54
         $this->collection = $collection;
55
-        $this->response = is_null($response)? new Response() : $response;
55
+        $this->response = is_null($response) ? new Response() : $response;
56 56
         $this->response->setStatusCode(404);
57
-        $this->route = is_null($route)? new Route() : $route;
57
+        $this->route = is_null($route) ? new Route() : $route;
58 58
         $this->middleware = new Middleware($this);
59
-        $this->config['di'] = function($class){
59
+        $this->config['di'] = function($class) {
60 60
             return new $class;
61 61
         };
62 62
     }
@@ -80,8 +80,8 @@  discard block
 block discarded – undo
80 80
     /**
81 81
      * @param object|array $matcher
82 82
      */
83
-    public function setMatcher($matcher){
84
-        if(is_object($matcher))
83
+    public function setMatcher($matcher) {
84
+        if (is_object($matcher))
85 85
             $matcher = [$matcher];
86 86
         $this->matcher = $matcher;
87 87
     }
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     /**
90 90
      * @param string $matcher
91 91
      */
92
-    public function addMatcher($matcher){
92
+    public function addMatcher($matcher) {
93 93
         $this->matcher[] = $matcher;
94 94
     }
95 95
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     {
114 114
         if (is_null($url))
115 115
             $url = (isset($_GET['url'])) ? $_GET['url'] : substr(str_replace(str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), 1);
116
-        $this->route->setUrl('/' . trim(explode('?', $url)[0], '/'));
116
+        $this->route->setUrl('/'.trim(explode('?', $url)[0], '/'));
117 117
     }
118 118
 
119 119
     /**
@@ -133,9 +133,9 @@  discard block
 block discarded – undo
133 133
      */
134 134
     public function callTarget()
135 135
     {
136
-        $target = is_array($this->route->getTarget('dispatcher'))?$this->route->getTarget('dispatcher'):[$this->route->getTarget('dispatcher')];
137
-        if(!empty($target)) {
138
-            foreach($target as $call) {
136
+        $target = is_array($this->route->getTarget('dispatcher')) ? $this->route->getTarget('dispatcher') : [$this->route->getTarget('dispatcher')];
137
+        if (!empty($target)) {
138
+            foreach ($target as $call) {
139 139
                 $this->dispatcher = new $call($this->route, $this->response);
140 140
                 call_user_func([$this->dispatcher, 'call']);
141 141
             }
@@ -158,11 +158,11 @@  discard block
 block discarded – undo
158 158
         if (isset($this->route->getDetail()['response_templates']) && isset($this->route->getDetail()['response_templates'][$code = $this->response->getStatusCode()])) {
159 159
             $this->route->setCallback($this->route->getDetail()['response_templates'][$code]);
160 160
             $matcher = null;
161
-            foreach($this->matcher as $instance) if($instance instanceof ArrayMatcher) $matcher = $instance;
162
-            if(is_null($matcher))$matcher = new ArrayMatcher($this);
161
+            foreach ($this->matcher as $instance) if ($instance instanceof ArrayMatcher) $matcher = $instance;
162
+            if (is_null($matcher))$matcher = new ArrayMatcher($this);
163 163
             foreach (call_user_func([$matcher, 'getResolver']) as $match)
164
-                if (is_array($target = call_user_func_array([$matcher, $match], [$this->route->getCallback()]))){
165
-                    call_user_func_array([$matcher, 'setTarget'],[$target]);
164
+                if (is_array($target = call_user_func_array([$matcher, $match], [$this->route->getCallback()]))) {
165
+                    call_user_func_array([$matcher, 'setTarget'], [$target]);
166 166
                     $this->callTarget();
167 167
                     break;
168 168
                 }
Please login to merge, or discard this patch.
src/Routing/Matcher/UriMatcher.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     private $dispatcher = [
33 33
         'isTemplate' => 'JetFire\Routing\Dispatcher\TemplateDispatcher',
34 34
         'isController' => 'JetFire\Routing\Dispatcher\ControllerDispatcher',
35
-        'isControllerAndTemplate' => ['JetFire\Routing\Dispatcher\ControllerDispatcher','JetFire\Routing\Dispatcher\TemplateDispatcher'],
35
+        'isControllerAndTemplate' => ['JetFire\Routing\Dispatcher\ControllerDispatcher', 'JetFire\Routing\Dispatcher\TemplateDispatcher'],
36 36
     ];
37 37
 
38 38
     /**
@@ -46,14 +46,14 @@  discard block
 block discarded – undo
46 46
     /**
47 47
      * @param array $resolver
48 48
      */
49
-    public function setResolver($resolver = []){
49
+    public function setResolver($resolver = []) {
50 50
         $this->resolver = $resolver;
51 51
     }
52 52
 
53 53
     /**
54 54
      * @param string $resolver
55 55
      */
56
-    public function addResolver($resolver){
56
+    public function addResolver($resolver) {
57 57
         $this->resolver[] = $resolver;
58 58
     }
59 59
 
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * @param $class
79 79
      * @return mixed|void
80 80
      */
81
-    public function addDispatcher($method,$class){
81
+    public function addDispatcher($method, $class) {
82 82
         $this->dispatcher[$method] = $class;
83 83
     }
84 84
 
@@ -87,10 +87,10 @@  discard block
 block discarded – undo
87 87
      */
88 88
     public function match()
89 89
     {
90
-        foreach($this->resolver as $resolver){
91
-            if(is_array($target = call_user_func([$this,$resolver]))) {
90
+        foreach ($this->resolver as $resolver) {
91
+            if (is_array($target = call_user_func([$this, $resolver]))) {
92 92
                 $this->setTarget($target);
93
-                if($this->router->middleware->globalMiddleware() === false || $this->router->middleware->blockMiddleware() === false || $this->router->middleware->classMiddleware() === false || $this->router->middleware->routeMiddleware() === false)
93
+                if ($this->router->middleware->globalMiddleware() === false || $this->router->middleware->blockMiddleware() === false || $this->router->middleware->classMiddleware() === false || $this->router->middleware->routeMiddleware() === false)
94 94
                     return null;
95 95
                 $this->router->response->setStatusCode(202);
96 96
                 return true;
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     /**
103 103
      * @param array $target
104 104
      */
105
-    public function setTarget($target = []){
105
+    public function setTarget($target = []) {
106 106
         $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0;
107 107
         $this->router->route->setDetail($this->request);
108 108
         $this->router->route->setTarget($target);
@@ -113,10 +113,10 @@  discard block
 block discarded – undo
113 113
     /**
114 114
      * @return array|bool
115 115
      */
116
-    public function isControllerAndTemplate(){
117
-        if(is_array($ctrl = $this->isController())) {
116
+    public function isControllerAndTemplate() {
117
+        if (is_array($ctrl = $this->isController())) {
118 118
             if (is_array($tpl = $this->isTemplate())) {
119
-                return array_merge(array_merge($ctrl, $tpl),[
119
+                return array_merge(array_merge($ctrl, $tpl), [
120 120
                     'dispatcher' => $this->dispatcher['isControllerAndTemplate']
121 121
                 ]);
122 122
             }
@@ -132,10 +132,10 @@  discard block
 block discarded – undo
132 132
     {
133 133
         foreach ($this->router->getConfig()['templateExtension'] as $extension) {
134 134
             for ($i = 0; $i < $this->router->collection->countRoutes; ++$i) {
135
-                $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '',$this->router->route->getUrl()));
135
+                $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_'.$i), '', $this->router->route->getUrl()));
136 136
                 $end = array_pop($url);
137 137
                 $url = implode('/', array_map('ucwords', $url)).'/'.$end;
138
-                if (is_file(($template = rtrim($this->router->collection->getRoutes('view_dir_' . $i), '/') . $url . $extension))) {
138
+                if (is_file(($template = rtrim($this->router->collection->getRoutes('view_dir_'.$i), '/').$url.$extension))) {
139 139
                     $this->request['collection_index'] = $i;
140 140
                     return [
141 141
                         'dispatcher' => $this->dispatcher['isTemplate'],
@@ -156,13 +156,13 @@  discard block
 block discarded – undo
156 156
     {
157 157
         $routes = array_slice(explode('/', $this->router->route->getUrl()), 1);
158 158
         $i = 0;
159
-        do{
160
-            $route =  ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i)) ? array_slice($routes, 1) : $routes;
159
+        do {
160
+            $route = ('/'.$routes[0] == $this->router->collection->getRoutes('prefix_'.$i)) ? array_slice($routes, 1) : $routes;
161 161
             if (isset($route[0])) {
162
-                $class =  (class_exists($this->router->collection->getRoutes('ctrl_namespace_' . $i). ucfirst($route[0]) . 'Controller'))
163
-                    ? $this->router->collection->getRoutes('ctrl_namespace_' . $i). ucfirst($route[0]) . 'Controller'
164
-                    : ucfirst($route[0]) . 'Controller';
165
-                $route[1] = isset($route[1])?$route[1]:'index';
162
+                $class = (class_exists($this->router->collection->getRoutes('ctrl_namespace_'.$i).ucfirst($route[0]).'Controller'))
163
+                    ? $this->router->collection->getRoutes('ctrl_namespace_'.$i).ucfirst($route[0]).'Controller'
164
+                    : ucfirst($route[0]).'Controller';
165
+                $route[1] = isset($route[1]) ? $route[1] : 'index';
166 166
                 if (method_exists($class, $route[1])) {
167 167
                     $this->request['parameters'] = array_slice($route, 2);
168 168
                     $this->request['collection_index'] = $i;
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
                 }
176 176
             }
177 177
             ++$i;
178
-        }while($i < $this->router->collection->countRoutes);
178
+        }while ($i < $this->router->collection->countRoutes);
179 179
         return false;
180 180
     }
181 181
 
Please login to merge, or discard this patch.
src/Routing/Middleware.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
                 if (is_array($blocks)) {
47 47
                     foreach ($blocks as $block)
48 48
                         if (class_exists($block))
49
-                            if($this->callHandler($block) == false) return false;
49
+                            if ($this->callHandler($block) == false) return false;
50 50
                 }
51 51
                 elseif (is_string($blocks) && class_exists($blocks))
52 52
                     return $this->callHandler($blocks);
@@ -63,10 +63,10 @@  discard block
 block discarded – undo
63 63
             $ctrl = str_replace('\\', '/', $this->router->route->getTarget('controller'));
64 64
             if (isset($this->router->collection->middleware['class_middleware'][$ctrl]) && class_exists($this->router->route->getTarget('controller'))) {
65 65
                 $classes = $this->router->collection->middleware['class_middleware'][$ctrl];
66
-                if(is_array($classes)){
66
+                if (is_array($classes)) {
67 67
                     foreach ($classes as $class)
68
-                        if($this->callHandler($class) == false)return false;
69
-                }elseif(is_string($classes))
68
+                        if ($this->callHandler($class) == false)return false;
69
+                }elseif (is_string($classes))
70 70
                     return $this->callHandler($classes);
71 71
             }
72 72
         }
@@ -81,10 +81,10 @@  discard block
 block discarded – undo
81 81
         if (isset($this->router->collection->middleware['route_middleware']))
82 82
             if (isset($this->router->route->getPath()['middleware']) && class_exists($this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']])) {
83 83
                 $classes = $this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']];
84
-                if(is_array($classes)){
84
+                if (is_array($classes)) {
85 85
                     foreach ($classes as $class)
86
-                        if($this->callHandler($class) == false)return false;
87
-                }elseif(is_string($classes))
86
+                        if ($this->callHandler($class) == false)return false;
87
+                }elseif (is_string($classes))
88 88
                     return $this->callHandler($classes);
89 89
             }
90 90
         return null;
@@ -94,8 +94,8 @@  discard block
 block discarded – undo
94 94
      * @param $class
95 95
      * @return mixed
96 96
      */
97
-    private function callHandler($class){
98
-        $instance = call_user_func($this->router->getConfig()['di'],$class);
97
+    private function callHandler($class) {
98
+        $instance = call_user_func($this->router->getConfig()['di'], $class);
99 99
         if (method_exists($instance, 'handle')) {
100 100
             $reflectionMethod = new ReflectionMethod($instance, 'handle');
101 101
             $dependencies = [];
@@ -112,8 +112,8 @@  discard block
 block discarded – undo
112 112
      * @param $class
113 113
      * @return Route|RouteCollection|Router|mixed
114 114
      */
115
-    private function getClass($class){
116
-        switch($class){
115
+    private function getClass($class) {
116
+        switch ($class) {
117 117
             case 'JetFire\Routing\Route':
118 118
                 return $this->router->route;
119 119
             case 'JetFire\Routing\Router':
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             case 'JetFire\Routing\RouteCollection':
122 122
                 return $this->router->collection;
123 123
             default:
124
-                return call_user_func_array($this->router->getConfig()['di'],[$class]);
124
+                return call_user_func_array($this->router->getConfig()['di'], [$class]);
125 125
         }
126 126
     }
127 127
 }
Please login to merge, or discard this patch.