Passed
Push — master ( 93edfc...a40ea7 )
by Anthony
03:14
created
core/RouterController.php 4 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 		}
66 66
 		
67 67
 		/**
68
-		 * @return mixed
68
+		 * @return string
69 69
 		 * this function return link and delete controller at the begining of the link
70 70
 		 */
71 71
 		private function getBaseLink() {
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 		
35 35
 		//-------------------------- GETTER ----------------------------------------------------------------------------//
36 36
 		public function getController(){
37
-		    return $this->controller;
37
+			return $this->controller;
38 38
 		}
39 39
 		
40 40
 		/**
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 			
22 22
 			$this->page = $page;
23 23
 			
24
-			if (($this->getTestCoreController() === false) && ($this->getTestModuleController()  === false)) {
24
+			if (($this->getTestCoreController() === false) && ($this->getTestModuleController() === false)) {
25 25
 				$this->controller = $this->part."/".$this->page.".php";
26 26
 			}
27 27
 			
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 		
34 34
 		
35 35
 		//-------------------------- GETTER ----------------------------------------------------------------------------//
36
-		public function getController(){
36
+		public function getController() {
37 37
 		    return $this->controller;
38 38
 		}
39 39
 		
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 		
34 34
 		
35 35
 		//-------------------------- GETTER ----------------------------------------------------------------------------//
36
-		public function getController(){
36
+		public function getController() {
37 37
 		    return $this->controller;
38 38
 		}
39 39
 		
Please login to merge, or discard this patch.