Completed
Push — 4.0 ( bf6233...a1234e )
by Marco
13:59
created
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.