Completed
Push — master ( 5d2be8...247f64 )
by Marcel
08:49 queued 07:19
created
src/Tools/Generator.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     /**
15 15
      * @param Route $route
16 16
      *
17
-     * @return mixed
17
+     * @return string
18 18
      */
19 19
     public function getUri(Route $route)
20 20
     {
@@ -33,7 +33,6 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param  \Illuminate\Routing\Route $route
36
-     * @param array $apply Rules to apply when generating documentation for this route
37 36
      *
38 37
      * @return array
39 38
      */
Please login to merge, or discard this patch.
src/Tools/ResponseStrategies/ResponseCallStrategy.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,6 @@
 block discarded – undo
84 84
     }
85 85
 
86 86
     /**
87
-     * @param array $config
88 87
      *
89 88
      * @return void
90 89
      *
Please login to merge, or discard this patch.
src/Tools/DocumentationConfig.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -11,6 +11,10 @@
 block discarded – undo
11 11
         $this->data = $config;
12 12
     }
13 13
 
14
+    /**
15
+     * @param string $key
16
+     * @param boolean $default
17
+     */
14 18
     public function get($key, $default = null)
15 19
     {
16 20
         return data_get($this->data, $key, $default);
Please login to merge, or discard this patch.