• File: WorkerStopping.php
  • Full Path: /home/masbinta/public_html/core/vendor/laravel/framework/src/Illuminate/Queue/Events/WorkerStopping.php
  • File size: 349 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Illuminate\Queue\Events;

class WorkerStopping
{
    /**
     * The exit status.
     *
     * @var int
     */
    public $status;

    /**
     * Create a new event instance.
     *
     * @param  int  $status
     * @return void
     */
    public function __construct($status = 0)
    {
        $this->status = $status;
    }
}