mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 15:13:29 +01:00
8 lines
129 B
PHP
8 lines
129 B
PHP
|
<?php namespace App\Http\Requests;
|
||
|
|
||
|
class ProjectRequest extends EntityRequest {
|
||
|
|
||
|
protected $entityType = ENTITY_PROJECT;
|
||
|
|
||
|
}
|