File "RetryController.php"

Full Path: /var/www/drive/laravel/horizon/src/Http/Controllers/RetryController.php
File size: 322 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\Horizon\Http\Controllers;

use Laravel\Horizon\Jobs\RetryFailedJob;

class RetryController extends Controller
{
    /**
     * Retry a failed job.
     *
     * @param  string  $id
     * @return void
     */
    public function store($id)
    {
        dispatch(new RetryFailedJob($id));
    }
}