Completed
Push — master ( 83778d...1bba19 )
by Sinnarasa
03:19
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/Middleware.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -76,8 +76,8 @@  discard block
 block discarded – undo
76 76
      * @param $class
77 77
      * @return mixed
78 78
      */
79
-    private function callHandler($class){
80
-        $instance = call_user_func($this->router->getConfig()['di'],$class);
79
+    private function callHandler($class) {
80
+        $instance = call_user_func($this->router->getConfig()['di'], $class);
81 81
         if (method_exists($instance, 'handle')) {
82 82
             $reflectionMethod = new ReflectionMethod($instance, 'handle');
83 83
             $dependencies = [];
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
      * @param $class
94 94
      * @return Route|RouteCollection|Router|mixed
95 95
      */
96
-    private function getClass($class){
97
-        switch($class){
96
+    private function getClass($class) {
97
+        switch ($class) {
98 98
             case 'JetFire\Routing\Route':
99 99
                 return $this->router->route;
100 100
                 break;
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
                 return $this->router->collection;
106 106
                 break;
107 107
             default:
108
-                return call_user_func_array($this->router->getConfig()['di'],[$class]);
108
+                return call_user_func_array($this->router->getConfig()['di'], [$class]);
109 109
                 break;
110 110
         }
111 111
     }
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/ControllerDispatcher.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * @param Route $route
29 29
      */
30
-    public function __construct(Route $route,ResponseInterface $response)
30
+    public function __construct(Route $route, ResponseInterface $response)
31 31
     {
32 32
         $this->route = $route;
33 33
         $this->response = $response;
@@ -44,12 +44,12 @@  discard block
 block discarded – undo
44 44
         $dependencies = [];
45 45
         foreach ($reflectionMethod->getParameters() as $arg)
46 46
             if (!is_null($arg->getClass()))
47
-                $dependencies[] = call_user_func_array($this->route->getTarget('di'),[$arg->getClass()->name]);
48
-        $dependencies = array_merge($dependencies,($this->route->getParameters() == '') ? [] : $this->route->getParameters());
47
+                $dependencies[] = call_user_func_array($this->route->getTarget('di'), [$arg->getClass()->name]);
48
+        $dependencies = array_merge($dependencies, ($this->route->getParameters() == '') ? [] : $this->route->getParameters());
49 49
         if ($this->response->getStatusCode() == 202)
50 50
             $this->response->setStatusCode(200);
51
-        if(is_array($content = $reflectionMethod->invokeArgs($this->getController(), $dependencies))) $this->route->addTarget('data',$content);
52
-        elseif(!is_null($content))$this->response->setContent($content);
51
+        if (is_array($content = $reflectionMethod->invokeArgs($this->getController(), $dependencies))) $this->route->addTarget('data', $content);
52
+        elseif (!is_null($content))$this->response->setContent($content);
53 53
     }
54 54
 
55 55
 
@@ -61,17 +61,17 @@  discard block
 block discarded – undo
61 61
     {
62 62
         $reflector = new ReflectionClass($this->route->getTarget('controller'));
63 63
         if (!$reflector->isInstantiable())
64
-            throw new \Exception('Target [' . $this->route->getTarget('controller') . '] is not instantiable.');
64
+            throw new \Exception('Target ['.$this->route->getTarget('controller').'] is not instantiable.');
65 65
         $constructor = $reflector->getConstructor();
66 66
         if (is_null($constructor)) {
67 67
             $class = $this->route->getTarget('controller');
68
-            return call_user_func_array($this->route->getTarget('di'),[$class]);
68
+            return call_user_func_array($this->route->getTarget('di'), [$class]);
69 69
         }
70 70
         $dependencies = $constructor->getParameters();
71 71
         $arguments = [];
72 72
         foreach ($dependencies as $dep) {
73 73
             $class = $dep->getClass()->name;
74
-            array_push($arguments, call_user_func_array($this->route->getTarget('di'),[$class]));
74
+            array_push($arguments, call_user_func_array($this->route->getTarget('di'), [$class]));
75 75
         }
76 76
         return $reflector->newInstanceArgs($arguments);
77 77
     }
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/Matcher/UriMatcher.php 1 patch
Spacing   +19 added lines, -19 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,8 +87,8 @@  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 93
                 $this->router->response->setStatusCode(202);
94 94
                 return true;
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     /**
101 101
      * @param array $target
102 102
      */
103
-    public function setTarget($target = []){
103
+    public function setTarget($target = []) {
104 104
         $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0;
105 105
         $this->router->route->setDetail($this->request);
106 106
         $this->router->route->setTarget($target);
@@ -111,10 +111,10 @@  discard block
 block discarded – undo
111 111
     /**
112 112
      * @return array|bool
113 113
      */
114
-    public function isControllerAndTemplate(){
115
-        if(is_array($ctrl = $this->isController())) {
114
+    public function isControllerAndTemplate() {
115
+        if (is_array($ctrl = $this->isController())) {
116 116
             if (is_array($tpl = $this->isTemplate())) {
117
-                return array_merge(array_merge($ctrl, $tpl),[
117
+                return array_merge(array_merge($ctrl, $tpl), [
118 118
                     'dispatcher' => $this->dispatcher['isControllerAndTemplate']
119 119
                 ]);
120 120
             }
@@ -130,10 +130,10 @@  discard block
 block discarded – undo
130 130
     {
131 131
         foreach ($this->router->getConfig()['templateExtension'] as $extension) {
132 132
             for ($i = 0; $i < $this->router->collection->countRoutes; ++$i) {
133
-                $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '',$this->router->route->getUrl()));
133
+                $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_'.$i), '', $this->router->route->getUrl()));
134 134
                 $end = array_pop($url);
135 135
                 $url = implode('/', array_map('ucwords', $url)).'/'.$end;
136
-                if (is_file(($template = rtrim($this->router->collection->getRoutes('view_dir_' . $i), '/') . $url . $extension))) {
136
+                if (is_file(($template = rtrim($this->router->collection->getRoutes('view_dir_'.$i), '/').$url.$extension))) {
137 137
                     $this->request['collection_index'] = $i;
138 138
                     return [
139 139
                         'dispatcher' => $this->dispatcher['isTemplate'],
@@ -154,13 +154,13 @@  discard block
 block discarded – undo
154 154
     {
155 155
         $routes = array_slice(explode('/', $this->router->route->getUrl()), 1);
156 156
         $i = 0;
157
-        do{
158
-            $route =  ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i)) ? array_slice($routes, 1) : $routes;
157
+        do {
158
+            $route = ('/'.$routes[0] == $this->router->collection->getRoutes('prefix_'.$i)) ? array_slice($routes, 1) : $routes;
159 159
             if (isset($route[0])) {
160
-                $class =  (class_exists($this->router->collection->getRoutes('ctrl_namespace_' . $i). ucfirst($route[0]) . 'Controller'))
161
-                    ? $this->router->collection->getRoutes('ctrl_namespace_' . $i). ucfirst($route[0]) . 'Controller'
162
-                    : ucfirst($route[0]) . 'Controller';
163
-                $route[1] = isset($route[1])?$route[1]:'index';
160
+                $class = (class_exists($this->router->collection->getRoutes('ctrl_namespace_'.$i).ucfirst($route[0]).'Controller'))
161
+                    ? $this->router->collection->getRoutes('ctrl_namespace_'.$i).ucfirst($route[0]).'Controller'
162
+                    : ucfirst($route[0]).'Controller';
163
+                $route[1] = isset($route[1]) ? $route[1] : 'index';
164 164
                 if (method_exists($class, $route[1])) {
165 165
                     $this->request['parameters'] = array_slice($route, 2);
166 166
                     $this->request['collection_index'] = $i;
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
                 }
174 174
             }
175 175
             ++$i;
176
-        }while($i < $this->router->collection->countRoutes);
176
+        }while ($i < $this->router->collection->countRoutes);
177 177
         return false;
178 178
     }
179 179
 
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,13 +49,13 @@  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;
58
-        $this->config['di'] = function($class){
57
+        $this->route = is_null($route) ? new Route() : $route;
58
+        $this->config['di'] = function($class) {
59 59
             return new $class;
60 60
         };
61 61
     }
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * @param object|array $matcher
81 81
      */
82
-    public function setMatcher($matcher){
83
-        if(is_object($matcher))
82
+    public function setMatcher($matcher) {
83
+        if (is_object($matcher))
84 84
             $matcher = [$matcher];
85 85
         $this->matcher = $matcher;
86 86
     }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     /**
89 89
      * @param string $matcher
90 90
      */
91
-    public function addMatcher($matcher){
91
+    public function addMatcher($matcher) {
92 92
         $this->matcher[] = $matcher;
93 93
     }
94 94
 
@@ -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
             }
@@ -170,11 +170,11 @@  discard block
 block discarded – undo
170 170
         if (isset($this->route->getDetail()['response_templates']) && isset($this->route->getDetail()['response_templates'][$code = $this->response->getStatusCode()])) {
171 171
             $this->route->setCallback($this->route->getDetail()['response_templates'][$code]);
172 172
             $matcher = null;
173
-            foreach($this->matcher as $instance) if($instance instanceof ArrayMatcher) $matcher = $instance;
174
-            if(is_null($matcher))$matcher = new ArrayMatcher($this);
173
+            foreach ($this->matcher as $instance) if ($instance instanceof ArrayMatcher) $matcher = $instance;
174
+            if (is_null($matcher))$matcher = new ArrayMatcher($this);
175 175
             foreach (call_user_func([$matcher, 'getResolver']) as $match)
176
-                if (is_array($target = call_user_func_array([$matcher, $match], [$this->route->getCallback()]))){
177
-                    call_user_func_array([$matcher, 'setTarget'],[$target]);
176
+                if (is_array($target = call_user_func_array([$matcher, $match], [$this->route->getCallback()]))) {
177
+                    call_user_func_array([$matcher, 'setTarget'], [$target]);
178 178
                     $this->callTarget();
179 179
                     break;
180 180
                 }
Please login to merge, or discard this patch.