Completed
Push — master ( 4be8e1...bb1ab9 )
by Sinnarasa
05:48
created
src/Routing/Match/SmartMatch.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     /**
21 21
      * @var array
22 22
      */
23
-    private $matcher = ['matchController','matchTemplate'];
23
+    private $matcher = ['matchController', 'matchTemplate'];
24 24
 
25 25
     /**
26 26
      * @param Router $router
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      * @param string $matcher
35 35
      */
36
-    public function addMatcher($matcher){
36
+    public function addMatcher($matcher) {
37 37
         $this->matcher[] = $matcher;
38 38
     }
39 39
 
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public function match()
52 52
     {
53
-        foreach($this->matcher as $matcher){
54
-            if(call_user_func([$this,$matcher])) {
53
+        foreach ($this->matcher as $matcher) {
54
+            if (call_user_func([$this, $matcher])) {
55 55
                 $this->router->route->setResponse(['code' => 202, 'message' => 'Accepted']);
56 56
                 return true;
57 57
             }
@@ -66,9 +66,9 @@  discard block
 block discarded – undo
66 66
     {
67 67
         foreach ($this->router->getConfig()['viewExtension'] as $extension) {
68 68
             for ($i = 0; $i < $this->router->collection->countRoutes; ++$i) {
69
-                $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '',$this->router->route->getUrl()));
69
+                $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '', $this->router->route->getUrl()));
70 70
                 $end = array_pop($url);
71
-                $url = implode('/', array_map('ucwords', $url)).'/'.$end;
71
+                $url = implode('/', array_map('ucwords', $url)) . '/' . $end;
72 72
                 if (is_file(($template = rtrim($this->router->collection->getRoutes('path_' . $i), '/') . $url . $extension))) {
73 73
                     $this->router->route->setTarget([
74 74
                         'dispatcher' => 'JetFire\Routing\Dispatcher\TemplateDispatcher',
@@ -91,11 +91,11 @@  discard block
 block discarded – undo
91 91
     {
92 92
         $routes = array_slice(explode('/', $this->router->route->getUrl()), 1);
93 93
         $i = 0;
94
-        do{
95
-            $route =  ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i)) ? array_slice($routes, 1) : $routes;
94
+        do {
95
+            $route = ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i)) ? array_slice($routes, 1) : $routes;
96 96
             if (isset($route[0])) {
97
-                $class =  (class_exists($this->router->collection->getRoutes('namespace_' . $i). ucfirst($route[0]) . 'Controller'))
98
-                    ? $this->router->collection->getRoutes('namespace_' . $i). ucfirst($route[0]) . 'Controller'
97
+                $class = (class_exists($this->router->collection->getRoutes('namespace_' . $i) . ucfirst($route[0]) . 'Controller'))
98
+                    ? $this->router->collection->getRoutes('namespace_' . $i) . ucfirst($route[0]) . 'Controller'
99 99
                     : ucfirst($route[0]) . 'Controller';
100 100
                 if (isset($route[1]) && method_exists($class, $route[1])) {
101 101
                     $this->router->route->setTarget([
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                 }
111 111
             }
112 112
             ++$i;
113
-        }while($i < $this->router->collection->countRoutes);
113
+        }while ($i < $this->router->collection->countRoutes);
114 114
         return false;
115 115
     }
116 116
 
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
@@ -207,11 +207,11 @@
 block discarded – undo
207 207
     /**
208 208
      * @return array
209 209
      */
210
-    public function getData(){
211
-        return (isset($this->getDetail()['data']) && is_array($this->getDetail()['data']))?$this->getDetail()['data']:[];
210
+    public function getData() {
211
+        return (isset($this->getDetail()['data']) && is_array($this->getDetail()['data'])) ? $this->getDetail()['data'] : [];
212 212
     }
213 213
 
214
-    public function getCollection(){
214
+    public function getCollection() {
215 215
 
216 216
     }
217 217
     /**
Please login to merge, or discard this patch.