forked from hyperf/hyperf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.phpstorm.meta.php
More file actions
28 lines (25 loc) · 761 Bytes
/
.phpstorm.meta.php
File metadata and controls
28 lines (25 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact [email protected]
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
namespace PHPSTORM_META;
use function di;
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(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));
override(\Hyperf\Tappable\tap(0), type(0));