Completed
Branch master (5d882d)
by Derek Stephen
02:16
created
src/Mvc/Controller.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
 
112 112
     /**
113 113
      * @param $param
114
-     * @return mixed
114
+     * @return Exception
115 115
      */
116 116
     public function getParam($param)
117 117
     {
Please login to merge, or discard this patch.
src/Mvc/Dispatcher.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -176,6 +176,9 @@
 block discarded – undo
176 176
 
177 177
 
178 178
 
179
+    /**
180
+     * @param Exception $e
181
+     */
179 182
     public function sinkingShip($e)
180 183
     {
181 184
         $this->request->setParam('error',$e);
Please login to merge, or discard this patch.
src/Mvc/Request.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -81,6 +81,9 @@
 block discarded – undo
81 81
     }
82 82
 
83 83
 
84
+    /**
85
+     * @param string $var
86
+     */
84 87
     private function getRawType($var)
85 88
     {
86 89
         switch(strtolower($var))
Please login to merge, or discard this patch.