-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
.phpstorm.meta.php
74 lines (68 loc) · 1.77 KB
/
.phpstorm.meta.php
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
declare(strict_types=1);
/**
* This file is part of the guanguans/ai-commit.
*
* (c) guanguans <[email protected]>
*
* This source file is subject to the MIT license that is bundled.
*/
namespace PHPSTORM_META;
use Illuminate\Bus\Dispatcher;
use Illuminate\Config\Repository;
use Illuminate\Container\Container as IlluminateContainer;
use Illuminate\Contracts\Container\Container;
use Illuminate\Database\DatabaseManager;
use Illuminate\Support\Arr;
use Illuminate\View\FileViewFinder;
use Psr\Container\ContainerInterface;
// PhpStorm Meta file, to provide autocomplete information for PhpStorm.
override(new Container(), map([
'' => '@',
Dispatcher::class => Dispatcher::class,
'db' => DatabaseManager::class,
'view.finder' => FileViewFinder::class,
'config' => Repository::class,
]));
override((new IlluminateContainer())->makeWith(0), map([
'' => '@',
'config' => Repository::class,
]));
override((new Container())->get(0), map([
'' => '@',
'config' => Repository::class,
]));
override((new Container())->make(0), map([
'' => '@',
'config' => Repository::class,
]));
override(Container::makeWith(0), map([
'' => '@',
'config' => Repository::class,
]));
override(\App::get(0), map([
'' => '@',
'config' => Repository::class,
]));
override(\App::make(0), map([
'' => '@',
'config' => Repository::class,
]));
override(\App::makeWith(0), map([
'' => '@',
'config' => Repository::class,
]));
override(app(0), map([
'' => '@',
'config' => Repository::class,
]));
override(resolve(0), map([
'' => '@',
'config' => Repository::class,
]));
override((new ContainerInterface())->get(0), map([
'' => '@',
'config' => Repository::class,
]));
override(Arr::add(0), type(0));
override(optional(0), type(0));