Completed
Push — develop ( 8dee05 )
by Dmytro
20:08
created
core/vendor/illuminate/support/helpers.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
     /**
148 148
      * Get an item from an array using "dot" notation.
149 149
      *
150
-     * @param  \ArrayAccess|array  $array
150
+     * @param  Doctrine\DBAL\Schema\Index[]  $array
151 151
      * @param  string  $key
152 152
      * @param  mixed   $default
153 153
      * @return mixed
@@ -565,7 +565,7 @@  discard block
 block discarded – undo
565 565
     /**
566 566
      * Escape HTML special characters in a string.
567 567
      *
568
-     * @param  \Illuminate\Contracts\Support\Htmlable|string  $value
568
+     * @param  string  $value
569 569
      * @param  bool  $doubleEncode
570 570
      * @return string
571 571
      */
@@ -676,7 +676,7 @@  discard block
 block discarded – undo
676 676
      * Get the last element from an array.
677 677
      *
678 678
      * @param  array  $array
679
-     * @return mixed
679
+     * @return string
680 680
      */
681 681
     function last($array)
682 682
     {
@@ -843,7 +843,7 @@  discard block
 block discarded – undo
843 843
      * Determine if a given string contains a given substring.
844 844
      *
845 845
      * @param  string  $haystack
846
-     * @param  string|array  $needles
846
+     * @param  string  $needles
847 847
      * @return bool
848 848
      */
849 849
     function str_contains($haystack, $needles)
@@ -1030,7 +1030,7 @@  discard block
 block discarded – undo
1030 1030
      *
1031 1031
      * @param  mixed  $value
1032 1032
      * @param  callable|null  $callback
1033
-     * @return mixed
1033
+     * @return Illuminate\Database\Schema\Blueprint
1034 1034
      */
1035 1035
     function tap($value, $callback = null)
1036 1036
     {
@@ -1168,7 +1168,7 @@  discard block
 block discarded – undo
1168 1168
     /**
1169 1169
      * Return the given value, optionally passed through the given callback.
1170 1170
      *
1171
-     * @param  mixed  $value
1171
+     * @param  Psr\Log\LoggerInterface  $value
1172 1172
      * @param  callable|null  $callback
1173 1173
      * @return mixed
1174 1174
      */
Please login to merge, or discard this patch.
core/vendor/illuminate/support/InteractsWithTime.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
      * Get the "available at" UNIX timestamp.
27 27
      *
28
-     * @param  \DateTimeInterface|\DateInterval|int  $delay
28
+     * @param  integer  $delay
29 29
      * @return int
30 30
      */
31 31
     protected function availableAt($delay = 0)
Please login to merge, or discard this patch.
core/vendor/illuminate/support/ServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     /**
76 76
      * Register a view file namespace.
77 77
      *
78
-     * @param  string|array  $path
78
+     * @param  string  $path
79 79
      * @param  string  $namespace
80 80
      * @return void
81 81
      */
Please login to merge, or discard this patch.
core/vendor/illuminate/support/Testing/Fakes/BusFake.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
      * Retrieve the handler for a command.
146 146
      *
147 147
      * @param  mixed  $command
148
-     * @return mixed
148
+     * @return boolean
149 149
      */
150 150
     public function getCommandHandler($command)
151 151
     {
Please login to merge, or discard this patch.
core/vendor/illuminate/support/Testing/Fakes/EventFake.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      *
36 36
      * @param  \Illuminate\Contracts\Events\Dispatcher  $dispatcher
37 37
      * @param  array|string  $eventsToFake
38
-     * @return void
38
+     * @return Dispatcher
39 39
      */
40 40
     public function __construct(Dispatcher $dispatcher, $eventsToFake = [])
41 41
     {
Please login to merge, or discard this patch.
core/vendor/illuminate/support/Testing/Fakes/QueueFake.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      * Assert if a job was pushed based on a truth-test callback.
20 20
      *
21 21
      * @param  string  $job
22
-     * @param  callable|int|null  $callback
22
+     * @param  \Closure  $callback
23 23
      * @return void
24 24
      */
25 25
     public function assertPushed($job, $callback = null)
Please login to merge, or discard this patch.
core/vendor/illuminate/translation/MessageSelector.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      * @param  string  $line
13 13
      * @param  int  $number
14 14
      * @param  string  $locale
15
-     * @return mixed
15
+     * @return string
16 16
      */
17 17
     public function choose($line, $number, $locale)
18 18
     {
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      *
39 39
      * @param  array  $segments
40 40
      * @param  int  $number
41
-     * @return mixed
41
+     * @return string|null
42 42
      */
43 43
     private function extract($segments, $number)
44 44
     {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      *
55 55
      * @param  string  $part
56 56
      * @param  int  $number
57
-     * @return mixed
57
+     * @return null|string
58 58
      */
59 59
     private function extractFromString($part, $number)
60 60
     {
Please login to merge, or discard this patch.
core/vendor/illuminate/translation/TranslationServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     /**
54 54
      * Get the services provided by the provider.
55 55
      *
56
-     * @return array
56
+     * @return string[]
57 57
      */
58 58
     public function provides()
59 59
     {
Please login to merge, or discard this patch.
core/vendor/illuminate/view/Compilers/Concerns/CompilesEchos.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * Get the echo methods in the proper order for compilation.
24 24
      *
25
-     * @return array
25
+     * @return string[]
26 26
      */
27 27
     protected function getEchoMethods()
28 28
     {
Please login to merge, or discard this patch.