JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "Looping.php"

Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/laravel/framework/src/Illuminate/Queue/Events/Looping.php
File size: 542 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
    }
}