Completed
Pull Request — master (#531)
by
unknown
01:35
created
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.
src/Tools/Generator.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     /**
29 29
      * @param Route $route
30 30
      *
31
-     * @return mixed
31
+     * @return string
32 32
      */
33 33
     public function getUri(Route $route)
34 34
     {
@@ -47,7 +47,6 @@  discard block
 block discarded – undo
47 47
 
48 48
     /**
49 49
      * @param  \Illuminate\Routing\Route $route
50
-     * @param array $apply Rules to apply when generating documentation for this route
51 50
      *
52 51
      * @return array
53 52
      */
@@ -95,7 +94,7 @@  discard block
 block discarded – undo
95 94
      * @param ReflectionMethod $method
96 95
      * @param array $tags
97 96
      *
98
-     * @return array
97
+     * @return Route
99 98
      */
100 99
     protected function getUriParameters(ReflectionMethod $method, array $tags)
101 100
     {
Please login to merge, or discard this patch.