mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +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;
|
|
|
|
}
|