PHP code example of sfneal / queueables

1. Go to this page and download the library: Download sfneal/queueables library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

sfneal / queueables example snippets

 php
# Create a Job class
use Sfneal\Queueables\AbstractJob;
class ExampleJob extends AbstractJob
{
    /**
     * Execute the job.
     *
     * @return mixed
     */
    public function handle()
    {
        return 'example job has been executed';
    }
}