Completed
Push — master ( 5b1873...773e0e )
by Zach
03:11 queued 01:11
created
src/Console/Command.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      *
56 56
      * @param string $key
57 57
      *
58
-     * @return string|array
58
+     * @return string
59 59
      */
60 60
     protected function argument($key = null)
61 61
     {
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      *
84 84
      * @param string $key
85 85
      *
86
-     * @return string|array
86
+     * @return string
87 87
      */
88 88
     protected function option($key = null)
89 89
     {
Please login to merge, or discard this patch.
src/Config/Config.php 1 patch
Doc Comments   +3 added lines, -5 removed lines patch added patch discarded remove patch
@@ -44,7 +44,6 @@  discard block
 block discarded – undo
44 44
     /**
45 45
      * Private constructor.
46 46
      *
47
-     * @param array $configArray
48 47
      */
49 48
     private function __construct()
50 49
     {
@@ -69,7 +68,6 @@  discard block
 block discarded – undo
69 68
     /**
70 69
      * Get instance of self with config array set.
71 70
      *
72
-     * @param array $configArray
73 71
      *
74 72
      * @return Config
75 73
      */
@@ -112,9 +110,9 @@  discard block
 block discarded – undo
112 110
     /**
113 111
      * Get a value by key from config.
114 112
      *
115
-     * @param string|array $key
113
+     * @param string $key
116 114
      *
117
-     * @return mixed
115
+     * @return string
118 116
      */
119 117
     public function get($key)
120 118
     {
@@ -271,7 +269,7 @@  discard block
 block discarded – undo
271 269
     /**
272 270
      * Validate that a setting exists.
273 271
      *
274
-     * @param array $settings
272
+     * @param string[] $settings
275 273
      *
276 274
      * @throws InvalidConfig
277 275
      */
Please login to merge, or discard this patch.