Completed
Push — master ( 32af77...22792e )
by Nazar
04:43
created
core/classes/Route.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package   CleverStyle CMS
4
- * @author    Nazar Mokrynskyi <[email protected]>
5
- * @copyright Copyright (c) 2015-2016, Nazar Mokrynskyi
6
- * @license   MIT License, see license.txt
7
- */
3
+	 * @package   CleverStyle CMS
4
+	 * @author    Nazar Mokrynskyi <[email protected]>
5
+	 * @copyright Copyright (c) 2015-2016, Nazar Mokrynskyi
6
+	 * @license   MIT License, see license.txt
7
+	 */
8 8
 namespace cs;
9 9
 /**
10
- * @deprecated Use `cs\Request` instead
11
- * @todo       Remove in 4.x
12
- */
10
+	 * @deprecated Use `cs\Request` instead
11
+	 * @todo       Remove in 4.x
12
+	 */
13 13
 class Route {
14 14
 	use
15 15
 		Singleton;
Please login to merge, or discard this patch.
core/traits/Request/Route.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package   CleverStyle CMS
4
- * @author    Nazar Mokrynskyi <[email protected]>
5
- * @copyright Copyright (c) 2015-2016, Nazar Mokrynskyi
6
- * @license   MIT License, see license.txt
7
- */
3
+	 * @package   CleverStyle CMS
4
+	 * @author    Nazar Mokrynskyi <[email protected]>
5
+	 * @copyright Copyright (c) 2015-2016, Nazar Mokrynskyi
6
+	 * @license   MIT License, see license.txt
7
+	 */
8 8
 namespace cs;
9 9
 use
10 10
 	ArrayAccess,
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
 		 * If match was not found - mirror is not allowed!
112 112
 		 */
113 113
 		if ($this->mirror_index === -1) {
114
-			throw new ExitException("Mirror $this->host not allowed", 400);
114
+			throw new ExitException("mirror $this->host not allowed", 400);
115 115
 		}
116 116
 		$results = $this->analyze_route_path($this->path);
117 117
 		$this->handle_redirect($Config, $results['path_normalized']);
Please login to merge, or discard this patch.