Completed
Push — master ( 7f011d...511c4e )
by recca
04:58
created
src/Generator.php 1 patch
Doc Comments   +5 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      * __construct.
35 35
      *
36 36
      * @param \Illuminate\Filesystem\Filesystem $filesystem   [description]
37
-     * @param \Recca0120\Generator\Fixers\UseSortFixers $useSortFixer [description]
37
+     * @param UseSortFixer $useSortFixer [description]
38 38
      */
39 39
     public function __construct(Filesystem $filesystem = null, UseSortFixer $useSortFixer = null)
40 40
     {
@@ -216,6 +216,7 @@  discard block
 block discarded – undo
216 216
      * set.
217 217
      *
218 218
      * @param string $value
219
+     * @param string $key
219 220
      * @return static
220 221
      */
221 222
     public function set($key, $value)
@@ -229,6 +230,7 @@  discard block
 block discarded – undo
229 230
      * setDefault.
230 231
      *
231 232
      * @param string $value
233
+     * @param string $key
232 234
      * @return static
233 235
      */
234 236
     protected function setDefault($key, $value)
@@ -243,7 +245,7 @@  discard block
 block discarded – undo
243 245
     /**
244 246
      * get.
245 247
      *
246
-     * @param string $value
248
+     * @param string $key
247 249
      * @return string
248 250
      */
249 251
     public function get($key)
@@ -255,7 +257,7 @@  discard block
 block discarded – undo
255 257
      * remove.
256 258
      *
257 259
      * @param string $key
258
-     * @return bool
260
+     * @return boolean|null
259 261
      */
260 262
     public function remove($key)
261 263
     {
Please login to merge, or discard this patch.