1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00
invoiceninja/app/Http/Requests/TaxRateRequest.php

9 lines
129 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Http\Requests;
2016-05-02 15:45:12 +02:00
2017-01-30 17:05:31 +01:00
class TaxRateRequest extends EntityRequest
{
2016-05-02 15:45:12 +02:00
protected $entityType = ENTITY_TAX_RATE;
2017-01-30 17:05:31 +01:00
}