mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
6 lines
127 B
PHP
6 lines
127 B
PHP
|
<?php namespace App\Http\Requests;
|
||
|
|
||
|
class ProductRequest extends EntityRequest {
|
||
|
|
||
|
protected $entityType = ENTITY_PRODUCT;
|
||
|
}
|