15 lines
188 B
PHP
15 lines
188 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
class AuthorizedRequest extends Request
|
|
{
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
}
|