|
<?php
|
|
|
|
namespace App\Http\Requests\admin\Catalog\Direction;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class UpdateEntranceExaminationRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
|
|
];
|
|
}
|
|
}
|