• File: job.stub
  • Full Path: /home/masbinta/public_html/core/vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/job.stub
  • File size: 379 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace {{ namespace }};

use Illuminate\Foundation\Bus\Dispatchable;

class {{ class }}
{
    use Dispatchable;

    /**
     * Create a new job instance.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

    /**
     * Execute the job.
     *
     * @return void
     */
    public function handle()
    {
        //
    }
}