forked from pressbooks/pressbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.phpstorm.meta.php
39 lines (34 loc) · 1.37 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
<?php
// @see http://confluence.jetbrains.com/display/PhpStorm/PhpStorm+Advanced+Metadata
namespace PHPSTORM_META {
override(\Pressbooks\Container::get(0),
map([
'Blade' => \Jenssegers\Blade\Blade::class,
'GlobalTypography' => \Pressbooks\GlobalTypography::class,
'Sass' => \Pressbooks\Sass::class,
'Styles' => \Pressbooks\Styles::class,
]));
//basicaly the same as get(0), just for array["arg"] lookups
override(new \Pressbooks\Container,
map([
'Blade' => \Jenssegers\Blade\Blade::class,
'GlobalTypography' => \Pressbooks\GlobalTypography::class,
'Sass' => \Pressbooks\Sass::class,
'Styles' => \Pressbooks\Styles::class,
]));
override(\Illuminate\Container\Container::make(0),
map([
'Blade' => \Jenssegers\Blade\Blade::class,
'GlobalTypography' => \Pressbooks\GlobalTypography::class,
'Sass' => \Pressbooks\Sass::class,
'Styles' => \Pressbooks\Styles::class,
]));
//basicaly the same as make(0), just for array["arg"] lookups
override(new \Illuminate\Container\Container,
map([
'Blade' => \Jenssegers\Blade\Blade::class,
'GlobalTypography' => \Pressbooks\GlobalTypography::class,
'Sass' => \Pressbooks\Sass::class,
'Styles' => \Pressbooks\Styles::class,
]));
}