1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Console/Commands/stubs/request.stub

11 lines
160 B
Plaintext
Raw Normal View History

2016-12-08 14:41:35 +01:00
<?php
namespace $NAMESPACE$;
2016-12-08 21:39:15 +01:00
use App\Http\Requests\EntityRequest;
2016-12-08 14:41:35 +01:00
2016-12-08 21:39:15 +01:00
class $CLASS$Request extends EntityRequest
2016-12-08 14:41:35 +01:00
{
2016-12-08 21:39:15 +01:00
protected $entityType = '$LOWER_NAME$';
2016-12-08 14:41:35 +01:00
}