mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-21 06:20:56 -04:00
7 lines
144 B
PHP
7 lines
144 B
PHP
<?php namespace App\Http\Requests;
|
|
|
|
class ExpenseCategoryRequest extends EntityRequest
|
|
{
|
|
protected $entityType = ENTITY_EXPENSE_CATEGORY;
|
|
}
|