mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
22 lines
353 B
PHP
22 lines
353 B
PHP
<?php namespace App\Http\Requests;
|
|
|
|
class ClientRequest extends BaseRequest {
|
|
|
|
protected $entityType = ENTITY_CLIENT;
|
|
|
|
public function authorize()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [];
|
|
}
|
|
}
|