mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-21 09:30:55 -04:00
9 lines
128 B
PHP
Executable File
9 lines
128 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
class ContactRequest extends EntityRequest
|
|
{
|
|
protected $entityType = ENTITY_CONTACT;
|
|
}
|