Completed
Branch master (d43477)
by Bohuslav
15:04 queued 48s
created
src/Dispatchers/DispatcherClosure.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
      * @param mixed $matches    parameters from request
88 88
      * @param mixed $parameters expected parameters from route
89 89
 
90
-     * @return array parametrs in right order, if there are not any parametrs an empty array is returned
90
+     * @return callable parametrs in right order, if there are not any parametrs an empty array is returned
91 91
      */
92 92
     private function _getFunctionArguments($paramMap, $matches, $parameters) {
93 93
         $output  = [];
Please login to merge, or discard this patch.
src/Dispatchers/DispatcherController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      * 
122 122
      * @param mixed $matches    found matched variables
123 123
      * @param mixed $parameters route parameters  
124
-     * @param mixed $handler    handler that should be executed
124
+     * @param string $handler    handler that should be executed
125 125
      *
126 126
      * @return mixed
127 127
      */
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
      * @param mixed $handler    handler that should be executed
176 176
      * @param mixed $matches    found matched variables
177 177
 
178
-     * @return mixed
178
+     * @return string
179 179
      */
180 180
     private function _resolveNamespace($parameters, $handler, $matches) {
181 181
         if (isset($handler['module'])) {
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
      * @param mixed $paramMap   parameter map
221 221
      * @param mixed $matches    found matched variables
222 222
      * @param mixed $parameters route parameters  
223
-     * @param mixed $handlers   handler that should be executed
223
+     * @param string $handlers   handler that should be executed
224 224
 
225 225
      * @return mixed
226 226
      */
Please login to merge, or discard this patch.
src/Matcher.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
     /**
149 149
      * Get format for URL resolving.
150 150
      *
151
-     * @return boolean
151
+     * @return string
152 152
      */
153 153
     public function getUrlFormat() {
154 154
         return $this->_urlFormat;
Please login to merge, or discard this patch.