1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Http/Requests/UpdatePaymentTermRequest.php
David Bomba 9d1cb37835
Payment Terms via API (#1808)
Added the ability to get payment_terms, payment_term and create a new payment_term via the API.
2018-01-14 23:21:10 +11:00

18 lines
257 B
PHP

<?php
namespace App\Http\Requests;
class UpdatePaymentTermRequest extends EntityRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [];
}
}