EscolaLMS/Templates-PDF

View on GitHub
src/Http/Requests/PdfListingRequest.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace EscolaLms\TemplatesPdf\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;

class PdfListingRequest extends FormRequest
{
    /**
     * @return bool
     */
    public function authorize()
    {
        return $this->user();
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [];
    }
}