Completed
Push — 4.0 ( 4d1c3b...6206cc )
by Marco
11:58
created
src/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/Cache/DispatcherCache.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -66,8 +66,6 @@
 block discarded – undo
66 66
     /**
67 67
      * Map provided log level to level code
68 68
      *
69
-     * @param   string    $level
70
-     *
71 69
      * @return  integer
72 70
      */
73 71
     protected static function getAlgorithm($algorithm) {
Please login to merge, or discard this patch.
src/Log/DispatcherLogger.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,6 @@
 block discarded – undo
33 33
     /**
34 34
      * Create the logger
35 35
      *
36
-     * @param bool $verbose
37
-     *
38 36
      * @return \Monolog\Logger
39 37
      */
40 38
     public static function create(Configuration $configuration) {
Please login to merge, or discard this patch.
src/Router/RoutingTable.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -62,6 +62,9 @@
 block discarded – undo
62 62
         
63 63
     }
64 64
     
65
+    /**
66
+     * @param string $route
67
+     */
65 68
     public function get($route) {
66 69
         
67 70
         $folders = explode("/", $route);
Please login to merge, or discard this patch.
src/Router/Collector.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -209,6 +209,9 @@
 block discarded – undo
209 209
 
210 210
     }
211 211
 
212
+    /**
213
+     * @param string[] $bits
214
+     */
212 215
     private function evalUri($parameters, $bits) {
213 216
 
214 217
         $count  = 0;
Please login to merge, or discard this patch.