12 lines
206 B
PHP
Executable File
12 lines
206 B
PHP
Executable File
<?php
|
|
|
|
namespace App\FormModel\api;
|
|
|
|
use Hyperf\Di\Annotation\Inject;
|
|
use Hyperf\HttpServer\Contract\RequestInterface;
|
|
|
|
class BaseModel
|
|
{
|
|
#[Inject]
|
|
protected RequestInterface $_request;
|
|
} |