-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.phpstorm.meta.php
89 lines (83 loc) · 3.8 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
/**
* This file declares all of the plugin containers available services and accessors for IDEs to read.
*
* NOTE: VS Code can use this file as well when the PHP Intelliphense extension is installed to provide autocompletion.
*
* @package ContentControl\Plugin
*/
namespace PHPSTORM_META;
/**
* Provide autocompletion for plugin container access.
*
* Return lists below all must match, it cannot be defined as a variable.
* Thus all the duplication is needed.
*/
/**
* NOTE: applies specifically to using the Plugin getter directly.
* Example Usage: $events = pum_Scheduling_plugin()->get( 'events' );
*/
override( \ContentControl\Plugin\Core::get(0), map( [
// Controllers.
'' => '@',
'connect' => \ContentControl\Plugin\Connect::class,
'license' => \ContentControl\Plugin\License::class,
'logging' => \ContentControl\Plugin\Logging::class,
'options' => \ContentControl\Plugin\Options::class,
'upgrader' => \ContentControl\Plugin\Upgrader::class,
'rules' => \ContentControl\RuleEngine\Rules::class,
'restrictions' => \ContentControl\Services\Restrictions::class,
'globals' => \ContentControl\Services\Globals::class,
'Frontend\Restrictions\PostContent' => \ContentControl\Controllers\Frontend\Restrictions\PostContent::class,
] ) );
/**
* NOTE: applies specifically to using the global getter function.
* Example Usage: $events = pum_scheduling( 'events' );
*/
override ( \ContentControl\plugin(0), map( [
// Controllers.
'' => '@',
'connect' => \ContentControl\Plugin\Connect::class,
'license' => \ContentControl\Plugin\License::class,
'logging' => \ContentControl\Plugin\Logging::class,
'options' => \ContentControl\Plugin\Options::class,
'upgrader' => \ContentControl\Plugin\Upgrader::class,
'rules' => \ContentControl\RuleEngine\Rules::class,
'restrictions' => \ContentControl\Services\Restrictions::class,
'globals' => \ContentControl\Services\Globals::class,
'Frontend\Restrictions\PostContent' => \ContentControl\Controllers\Frontend\Restrictions\PostContent::class,
] ) );
/**
* NOTE: applies specifically to using the global getter function.
* Example Usage: $events = pum_scheduling( 'events' );
*/
override ( \ContentControl\Base\Container::get(0), map( [
// Controllers.
'' => '@',
'connect' => \ContentControl\Plugin\Connect::class,
'license' => \ContentControl\Plugin\License::class,
'logging' => \ContentControl\Plugin\Logging::class,
'options' => \ContentControl\Plugin\Options::class,
'upgrader' => \ContentControl\Plugin\Upgrader::class,
'rules' => \ContentControl\RuleEngine\Rules::class,
'restrictions' => \ContentControl\Services\Restrictions::class,
'globals' => \ContentControl\Services\Globals::class,
'Frontend\Restrictions\PostContent' => \ContentControl\Controllers\Frontend\Restrictions\PostContent::class,
] ) );
/**
* NOTE: applies specifically to using the global getter function.
* Example Usage: $events = pum_scheduling( 'events' );
*/
override ( \ContentControl\Base\Container::offsetGet(0), map( [
// Controllers.
'' => '@',
'connect' => \ContentControl\Plugin\Connect::class,
'license' => \ContentControl\Plugin\License::class,
'logging' => \ContentControl\Plugin\Logging::class,
'options' => \ContentControl\Plugin\Options::class,
'upgrader' => \ContentControl\Plugin\Upgrader::class,
'rules' => \ContentControl\RuleEngine\Rules::class,
'restrictions' => \ContentControl\Services\Restrictions::class,
'globals' => \ContentControl\Services\Globals::class,
'Frontend\Restrictions\PostContent' => \ContentControl\Controllers\Frontend\Restrictions\PostContent::class,
] ) );