| 1 | <?php |
||
| 10 | abstract class ApiRequestAbstract extends FormRequest |
||
| 11 | { |
||
| 12 | public function authorize(): bool |
||
| 13 | { |
||
| 14 | return false; |
||
| 15 | } |
||
| 16 | |||
| 17 | public function rules(): array |
||
| 18 | { |
||
| 19 | return []; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function allowedIncludes(): array |
||
| 23 | { |
||
| 24 | return []; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function builder(): ?QueryBuilderAbstract |
||
| 31 | } |
||
| 32 |