invoiceninja/app/Http/Requests/PaymentRequest.php

9 lines
128 B
PHP
Raw Permalink Normal View History

2017-01-30 21:40:43 +02:00
<?php
namespace App\Http\Requests;
2016-05-01 15:04:55 +03:00
2017-01-30 18:05:31 +02:00
class PaymentRequest extends EntityRequest
{
2016-05-01 15:04:55 +03:00
protected $entityType = ENTITY_PAYMENT;
2017-01-30 18:05:31 +02:00
}