mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-11-30 02:37:58 +08:00
298230f95a
Co-authored-by: 李铭昕 <715557344@qq.com>
31 lines
746 B
PHP
31 lines
746 B
PHP
<?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
|
|
*/
|
|
|
|
namespace PHPSTORM_META;
|
|
|
|
use Hyperf\Context\Context;
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
use function make;
|
|
use function optional;
|
|
use function tap;
|
|
|
|
// Reflect
|
|
override(ContainerInterface::get(0), map(['' => '@']));
|
|
override(Context::get(0), map(['' => '@']));
|
|
override(make(0), map(['' => '@']));
|
|
override(\Hyperf\Support\make(0), map(['' => '@']));
|
|
override(optional(0), type(0));
|
|
override(\Hyperf\Support\optional(0), type(0));
|
|
override(tap(0), type(0));
|
|
override(\Hyperf\Tappable\tap(0), type(0));
|