mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 14:12:44 +01:00
29 lines
510 B
PHP
29 lines
510 B
PHP
|
<?php namespace app\Http\Requests;
|
||
|
|
||
|
use App\Http\Requests\Request;
|
||
|
use Illuminate\Validation\Factory;
|
||
|
use App\Models\Invoice;
|
||
|
|
||
|
class UpdatePaymentRequest extends Request
|
||
|
{
|
||
|
/**
|
||
|
* Determine if the user is authorized to make this request.
|
||
|
*
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function authorize()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the validation rules that apply to the request.
|
||
|
*
|
||
|
* @return array
|
||
|
*/
|
||
|
public function rules()
|
||
|
{
|
||
|
return [];
|
||
|
}
|
||
|
}
|