2023-01-06 15:51:18 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* This file is part of Hyperf.
|
|
|
|
*
|
|
|
|
* @link https://www.hyperf.io
|
|
|
|
* @document https://hyperf.wiki
|
|
|
|
* @contact group@hyperf.io
|
|
|
|
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
|
|
|
|
*/
|
2024-06-24 10:36:02 +08:00
|
|
|
|
2023-01-06 15:51:18 +08:00
|
|
|
namespace PHPSTORM_META;
|
|
|
|
|
2024-06-24 10:36:02 +08:00
|
|
|
use Hyperf\Context\Context;
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
|
2023-04-25 15:21:20 +08:00
|
|
|
use function make;
|
|
|
|
use function optional;
|
|
|
|
use function tap;
|
|
|
|
|
2023-01-06 15:51:18 +08:00
|
|
|
// Reflect
|
2024-06-24 10:36:02 +08:00
|
|
|
override(ContainerInterface::get(0), map(['' => '@']));
|
|
|
|
override(Context::get(0), map(['' => '@']));
|
2023-04-25 15:21:20 +08:00
|
|
|
override(make(0), map(['' => '@']));
|
2023-04-25 17:04:00 +08:00
|
|
|
override(\Hyperf\Support\make(0), map(['' => '@']));
|
2023-04-25 15:21:20 +08:00
|
|
|
override(optional(0), type(0));
|
2023-04-25 17:04:00 +08:00
|
|
|
override(\Hyperf\Support\optional(0), type(0));
|
2023-04-25 15:21:20 +08:00
|
|
|
override(tap(0), type(0));
|
|
|
|
override(\Hyperf\Tappable\tap(0), type(0));
|