mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-11-29 10:17:39 +08:00
chore: Update PHPStorm meta file to include Symfony Console Application mapping (#6905)
Co-authored-by: 李铭昕 <715557344@qq.com>
This commit is contained in:
parent
d106eef471
commit
298230f95a
@ -9,19 +9,21 @@ declare(strict_types=1);
|
||||
* @contact group@hyperf.io
|
||||
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
|
||||
*/
|
||||
|
||||
namespace PHPSTORM_META;
|
||||
|
||||
use function di;
|
||||
use Hyperf\Context\Context;
|
||||
use Psr\Container\ContainerInterface;
|
||||
|
||||
use function make;
|
||||
use function optional;
|
||||
use function tap;
|
||||
|
||||
// Reflect
|
||||
override(\Psr\Container\ContainerInterface::get(0), map(['' => '@']));
|
||||
override(\Hyperf\Context\Context::get(0), map(['' => '@']));
|
||||
override(ContainerInterface::get(0), map(['' => '@']));
|
||||
override(Context::get(0), map(['' => '@']));
|
||||
override(make(0), map(['' => '@']));
|
||||
override(\Hyperf\Support\make(0), map(['' => '@']));
|
||||
override(di(0), map(['' => '@']));
|
||||
override(optional(0), type(0));
|
||||
override(\Hyperf\Support\optional(0), type(0));
|
||||
override(tap(0), type(0));
|
||||
|
@ -13,9 +13,11 @@ declare(strict_types=1);
|
||||
namespace Hyperf\Contract;
|
||||
|
||||
use Hyperf\Framework\ApplicationFactory;
|
||||
use Symfony\Component\Console\Application;
|
||||
|
||||
/**
|
||||
* @see ApplicationFactory
|
||||
* @mixin Application
|
||||
*/
|
||||
interface ApplicationInterface
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user