Files

23 lines
577 B
PHP
Raw Permalink Normal View History

2022-09-09 16:42:55 +08:00
<?php
namespace PHPSTORM_META {
// Reflect
use Kiri\Di\Container;
use Kiri\Di\ContainerInterface;
use wchat\wx\QqFactory;
use wchat\wx\WxFactory;
override(ContainerInterface::get(0), map('@'));
override(Container::get(0), map('@'));
override(WxFactory::get(0), map('@'));
override(QqFactory::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('@'));
}