Larval framework upated to v5.6.33

Updated laravel frameowrk version to as suggested for security patch update which was released in v5.6.30
This commit is contained in:
Manish Verma
2018-08-15 18:38:24 +05:30
parent 5d3ffdf379
commit 8148bbd920
319 changed files with 647 additions and 1078 deletions

0
vendor/laravel/framework/src/Illuminate/Queue/BeanstalkdQueue.php vendored Normal file → Executable file
View File

View File

View File

View File

View File

View File

View File

0
vendor/laravel/framework/src/Illuminate/Queue/Jobs/Job.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Queue/Jobs/SqsJob.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Queue/Jobs/SyncJob.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Queue/Listener.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Queue/Queue.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Queue/QueueManager.php vendored Normal file → Executable file
View File

View File

View File

@@ -162,7 +162,11 @@ class RedisQueue extends Queue implements QueueContract
{
$this->migrate($prefixed = $this->getQueue($queue));
list($job, $reserved) = $this->retrieveNextJob($prefixed);
if (empty($nextJob = $this->retrieveNextJob($prefixed))) {
return;
}
list($job, $reserved) = $nextJob;
if ($reserved) {
return new RedisJob(

0
vendor/laravel/framework/src/Illuminate/Queue/SqsQueue.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Queue/SyncQueue.php vendored Normal file → Executable file
View File