Files
kiri-core/.phpstorm.meta.php
2023-12-01 22:57:25 +08:00

23 lines
668 B
PHP

<?php
namespace PHPSTORM_META {
// Reflect
use Kiri\Di\Container;
use Psr\Container\ContainerInterface;
use Psr\Container\ContainerInterface as SC;
use Psr\Http\Message\ServerRequestInterface;
override(ContainerInterface::get(0), map('@'));
override(SC::get(0), map('@'));
override(Container::get(0), map('@'));
override(Container::make(0), map('@'));
override(Container::create(0), map('@'));
// override(\Hyperf\Utils\Context::get(0), map('@'));
override(\make(0), map('@'));
override(\di(0), map('@'));
override(\duplicate(0), map('@'));
override(ServerRequestInterface::getAttribute(0), map('@'));
}