Completed
Push — 4.0 ( a1234e...3b08f9 )
by Marco
03:21
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/Parser.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -116,6 +116,10 @@
 block discarded – undo
116 116
     }
117 117
 
118 118
     // This method read a single parameter and build the regular expression
119
+
120
+    /**
121
+     * @param Route $value
122
+     */
119 123
     private function param($key, $string, $value) {
120 124
 
121 125
         $field_required = false;
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/Components/DataSerialization.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      *
42 42
      * @param string $data Serialized data
43 43
      *
44
-     * @return Routes $this
44
+     * @return boolean $this
45 45
      */
46 46
     public function unserialize($data) {
47 47
 
Please login to merge, or discard this patch.