This commit is contained in:
xl
2023-11-14 00:15:27 +08:00
parent fbdbcbccd9
commit e721fe4f36
53 changed files with 1 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
<?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('@'));
}