Completed
Push — 4.0 ( bcbbe3...4201d3 )
by Marco
09:53
created
src/Comodojo/Dispatcher/Dispatcher.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -167,6 +167,9 @@
 block discarded – undo
167 167
 
168 168
     }
169 169
 
170
+    /**
171
+     * @param string $name
172
+     */
170 173
     private function emitServiceSpecializedEvents($name) {
171 174
 
172 175
         return new ServiceEvent(
Please login to merge, or discard this patch.
src/Comodojo/Dispatcher/Router/Route.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -90,6 +90,11 @@
 block discarded – undo
90 90
 
91 91
     }
92 92
 
93
+    /**
94
+     * @param string $key
95
+     *
96
+     * @return string
97
+     */
93 98
     public function getParameter($key) {
94 99
 
95 100
         return (isset($this->parameters[$key]))?$this->parameters[$key]:null;
Please login to merge, or discard this patch.
src/Comodojo/Dispatcher/Request/File.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -44,6 +44,9 @@
 block discarded – undo
44 44
 
45 45
     }
46 46
 
47
+    /**
48
+     * @return string
49
+     */
47 50
     public function getTemporaryName() {
48 51
 
49 52
         return $this->tname;
Please login to merge, or discard this patch.