mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
8 lines
150 B
PHP
8 lines
150 B
PHP
<?php namespace App\Http\Requests;
|
|
|
|
class ExpenseCategoryRequest extends EntityRequest {
|
|
|
|
protected $entityType = ENTITY_EXPENSE_CATEGORY;
|
|
|
|
}
|