%PDF- %PDF-
Direktori : /home/silvzytp/calling_code/vendor/laravel/framework/src/Illuminate/Queue/Events/ |
Current File : //home/silvzytp/calling_code/vendor/laravel/framework/src/Illuminate/Queue/Events/Looping.php |
<?php namespace Illuminate\Queue\Events; class Looping { /** * The connection name. * * @var string */ public $connectionName; /** * The queue name. * * @var string */ public $queue; /** * Create a new event instance. * * @param string $connectionName * @param string $queue * @return void */ public function __construct($connectionName, $queue) { $this->queue = $queue; $this->connectionName = $connectionName; } }