@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | /** |
76 | 76 | * Request URL. |
77 | 77 | */ |
78 | - $this->url = '/' . $url; |
|
78 | + $this->url = '/'.$url; |
|
79 | 79 | |
80 | 80 | /** |
81 | 81 | * Get method. |
@@ -163,20 +163,20 @@ discard block |
||
163 | 163 | $controller = ''; |
164 | 164 | if (false !== strpos($this->url, '.php')) { |
165 | 165 | $controller = explode('.php', $this->url); |
166 | - $controller = ltrim($controller[0], '/') . '.php'; |
|
166 | + $controller = ltrim($controller[0], '/').'.php'; |
|
167 | 167 | } |
168 | 168 | $route = trim($route, '/'); |
169 | 169 | if ('Original' == $this->package) { |
170 | 170 | if ($this->languageCode != $this->languageDefault) { |
171 | - $url = trim('/' . $this->languageCode . '/' . $route, '/'); |
|
171 | + $url = trim('/'.$this->languageCode.'/'.$route, '/'); |
|
172 | 172 | } else { |
173 | - $url = trim('/' . $route, '/'); |
|
173 | + $url = trim('/'.$route, '/'); |
|
174 | 174 | } |
175 | 175 | } else { |
176 | 176 | if ($this->languageCode != $this->languageDefault) { |
177 | - $url = trim('/' . $this->languageCode . '/' . lcfirst($this->package) . '/' . $route, '/'); |
|
177 | + $url = trim('/'.$this->languageCode.'/'.lcfirst($this->package).'/'.$route, '/'); |
|
178 | 178 | } else { |
179 | - $url = trim('/' . lcfirst($this->package) . '/' . $route, '/'); |
|
179 | + $url = trim('/'.lcfirst($this->package).'/'.$route, '/'); |
|
180 | 180 | } |
181 | 181 | } |
182 | 182 | if ($domain) { |
@@ -194,15 +194,15 @@ discard block |
||
194 | 194 | $protocol = 'https://'; |
195 | 195 | } |
196 | 196 | if (empty($controller)) { |
197 | - $url = $protocol . $host . '/' . $url; |
|
197 | + $url = $protocol.$host.'/'.$url; |
|
198 | 198 | } else { |
199 | - $url = $protocol . $host . '/' . $controller . '/' . $url; |
|
199 | + $url = $protocol.$host.'/'.$controller.'/'.$url; |
|
200 | 200 | } |
201 | 201 | } else { |
202 | 202 | if (empty($controller)) { |
203 | - $url = '/' . $url; |
|
203 | + $url = '/'.$url; |
|
204 | 204 | } else { |
205 | - $url = '/' . $controller . '/' . $url; |
|
205 | + $url = '/'.$controller.'/'.$url; |
|
206 | 206 | } |
207 | 207 | } |
208 | 208 |
@@ -22,17 +22,17 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function __construct($appRoot) |
24 | 24 | { |
25 | - $appRoot = rtrim($appRoot, '/') . '/'; |
|
25 | + $appRoot = rtrim($appRoot, '/').'/'; |
|
26 | 26 | $this->packageRoot = $appRoot; |
27 | 27 | |
28 | 28 | /** |
29 | 29 | * Register autoload to app/$package/src dir's. |
30 | 30 | */ |
31 | - spl_autoload_register(function ($path) use ($appRoot) { |
|
31 | + spl_autoload_register(function($path) use ($appRoot) { |
|
32 | 32 | $path = explode('\\', $path); |
33 | - array_shift($path); // Vendor |
|
34 | - $package = $appRoot . array_shift($path); // Package |
|
35 | - $path = $package . '/src/' . implode('/', $path) . '.php'; |
|
33 | + array_shift($path); // Vendor |
|
34 | + $package = $appRoot.array_shift($path); // Package |
|
35 | + $path = $package.'/src/'.implode('/', $path).'.php'; |
|
36 | 36 | if (file_exists($path)) { |
37 | 37 | require_once $path; |
38 | 38 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | { |
54 | 54 | $request = new Request($languageList, $packageList, $url); |
55 | 55 | |
56 | - $this->packageRoot .= $request->package() . '/'; |
|
56 | + $this->packageRoot .= $request->package().'/'; |
|
57 | 57 | |
58 | 58 | /** |
59 | 59 | * Process request. |
@@ -65,13 +65,13 @@ discard block |
||
65 | 65 | /** |
66 | 66 | * Path to router class. |
67 | 67 | */ |
68 | - $path = $this->packageRoot . $routeClassList[$request->package()] . '.php'; |
|
68 | + $path = $this->packageRoot.$routeClassList[$request->package()].'.php'; |
|
69 | 69 | if (file_exists($path)) { |
70 | 70 | require $path; |
71 | 71 | /** |
72 | 72 | * Name of router class. |
73 | 73 | */ |
74 | - $route = $request->package() . '\\' . $routeClassList[$request->package()]; |
|
74 | + $route = $request->package().'\\'.$routeClassList[$request->package()]; |
|
75 | 75 | /** |
76 | 76 | * @var IRoute $route |
77 | 77 | */ |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | $response->headerStatus(404); |
99 | 99 | |
100 | 100 | $content = '404 Not Found'; |
101 | - if (file_exists($this->packageRoot . '/view/404.html.php')) { |
|
101 | + if (file_exists($this->packageRoot.'/view/404.html.php')) { |
|
102 | 102 | $content = (new Native($this->packageRoot))->getContent('404.html.php'); |
103 | 103 | } |
104 | 104 |