Skip to content

Commit

Permalink
Merge pull request #28213 from maxsky/patch-1
Browse files Browse the repository at this point in the history
Update Queue.php, update all $data vars datatype
  • Loading branch information
taylorotwell committed Apr 14, 2019
2 parents 7379fc1 + 1b6089e commit b4343fc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Illuminate/Support/Facades/Queue.php
Expand Up @@ -6,12 +6,12 @@

/**
* @method static int size(string $queue = null)
* @method static mixed push(string|object $job, string $data = '', $queue = null)
* @method static mixed pushOn(string $queue, string|object $job, $data = '')
* @method static mixed push(string|object $job, mixed $data = '', $queue = null)
* @method static mixed pushOn(string $queue, string|object $job, mixed $data = '')
* @method static mixed pushRaw(string $payload, string $queue = null, array $options = [])
* @method static mixed later(\DateTimeInterface|\DateInterval|int $delay, string|object $job, $data = '', string $queue = null)
* @method static mixed laterOn(string $queue, \DateTimeInterface|\DateInterval|int $delay, string|object $job, $data = '')
* @method static mixed bulk(array $jobs, $data = '', string $queue = null)
* @method static mixed later(\DateTimeInterface|\DateInterval|int $delay, string|object $job, mixed $data = '', string $queue = null)
* @method static mixed laterOn(string $queue, \DateTimeInterface|\DateInterval|int $delay, string|object $job, mixed $data = '')
* @method static mixed bulk(array $jobs, mixed $data = '', string $queue = null)
* @method static \Illuminate\Contracts\Queue\Job|null pop(string $queue = null)
* @method static string getConnectionName()
* @method static \Illuminate\Contracts\Queue\Queue setConnectionName(string $name)
Expand Down

0 comments on commit b4343fc

Please sign in to comment.