Completed
Push — develop ( 8dee05 )
by Dmytro
20:08
created
core/vendor/illuminate/cache/Repository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
      * Increment the value of an item in the cache.
272 272
      *
273 273
      * @param  string  $key
274
-     * @param  mixed  $value
274
+     * @param  integer  $value
275 275
      * @return int|bool
276 276
      */
277 277
     public function increment($key, $value = 1)
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
      * Decrement the value of an item in the cache.
284 284
      *
285 285
      * @param  string  $key
286
-     * @param  mixed  $value
286
+     * @param  integer  $value
287 287
      * @return int|bool
288 288
      */
289 289
     public function decrement($key, $value = 1)
Please login to merge, or discard this patch.
core/vendor/illuminate/cache/TaggedCache.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      * Increment the value of an item in the cache.
34 34
      *
35 35
      * @param  string  $key
36
-     * @param  mixed   $value
36
+     * @param  integer   $value
37 37
      * @return void
38 38
      */
39 39
     public function increment($key, $value = 1)
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      * Decrement the value of an item in the cache.
46 46
      *
47 47
      * @param  string  $key
48
-     * @param  mixed   $value
48
+     * @param  integer   $value
49 49
      * @return void
50 50
      */
51 51
     public function decrement($key, $value = 1)
@@ -65,6 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
     /**
67 67
      * {@inheritdoc}
68
+     * @param string $key
68 69
      */
69 70
     protected function itemKey($key)
70 71
     {
Please login to merge, or discard this patch.
core/vendor/illuminate/cache/TagSet.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      *
26 26
      * @param  \Illuminate\Contracts\Cache\Store  $store
27 27
      * @param  array  $names
28
-     * @return void
28
+     * @return TagSet
29 29
      */
30 30
     public function __construct(Store $store, array $names = [])
31 31
     {
Please login to merge, or discard this patch.
core/vendor/illuminate/config/Repository.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
     /**
41 41
      * Get the specified configuration value.
42 42
      *
43
-     * @param  array|string  $key
44
-     * @param  mixed   $default
43
+     * @param  string  $key
44
+     * @param  string   $default
45 45
      * @return mixed
46 46
      */
47 47
     public function get($key, $default = null)
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     /**
78 78
      * Set a given configuration value.
79 79
      *
80
-     * @param  array|string  $key
80
+     * @param  string  $key
81 81
      * @param  mixed   $value
82 82
      * @return void
83 83
      */
Please login to merge, or discard this patch.
core/vendor/illuminate/console/Command.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
      * Give the user a single choice from an array of answers.
373 373
      *
374 374
      * @param  string  $question
375
-     * @param  array   $choices
375
+     * @param  string[]   $choices
376 376
      * @param  string|null  $default
377 377
      * @param  mixed|null   $attempts
378 378
      * @param  bool|null    $multiple
@@ -390,8 +390,8 @@  discard block
 block discarded – undo
390 390
     /**
391 391
      * Format input to textual table.
392 392
      *
393
-     * @param  array   $headers
394
-     * @param  \Illuminate\Contracts\Support\Arrayable|array  $rows
393
+     * @param  string[]   $headers
394
+     * @param  \Illuminate\Support\Collection  $rows
395 395
      * @param  string  $tableStyle
396 396
      * @param  array   $columnStyles
397 397
      * @return void
Please login to merge, or discard this patch.
core/vendor/illuminate/console/GeneratorCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * Execute the console command.
47 47
      *
48
-     * @return bool|null
48
+     * @return false|null
49 49
      */
50 50
     public function handle()
51 51
     {
Please login to merge, or discard this patch.
core/vendor/illuminate/console/Parser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     /**
55 55
      * Extract all of the parameters from the tokens.
56 56
      *
57
-     * @param  array  $tokens
57
+     * @param  string[]  $tokens
58 58
      * @return array
59 59
      */
60 60
     protected static function parameters(array $tokens)
Please login to merge, or discard this patch.
core/vendor/illuminate/console/Scheduling/Event.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -594,7 +594,7 @@
 block discarded – undo
594 594
     /**
595 595
      * Register a callback to further filter the schedule.
596 596
      *
597
-     * @param  \Closure|bool  $callback
597
+     * @param  Closure  $callback
598 598
      * @return $this
599 599
      */
600 600
     public function skip($callback)
Please login to merge, or discard this patch.
core/vendor/illuminate/console/Scheduling/ManagesFrequencies.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -370,7 +370,7 @@
 block discarded – undo
370 370
     /**
371 371
      * Set the days of the week the command should run on.
372 372
      *
373
-     * @param  array|mixed  $days
373
+     * @param  integer  $days
374 374
      * @return $this
375 375
      */
376 376
     public function days($days)
Please login to merge, or discard this patch.