-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.phpstorm.meta.php
42 lines (38 loc) · 1.66 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
<?php
/**
* JBZoo CrossCMS
*
* This file is part of the JBZoo CCK package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @package CrossCMS
* @license MIT
* @copyright Copyright (C) JBZoo.com, All rights reserved.
* @link https://github.com/JBZoo/CrossCMS
* @author Denis Smetannikov <[email protected]>
*/
namespace PHPSTORM_META {
/** @noinspection PhpUnusedLocalVariableInspection */
/** @noinspection PhpIllegalArrayKeyTypeInspection */
$STATIC_METHOD_TYPES = [
\JBZoo\CrossCMS\Cms::_('') => [
"db" instanceof \JBZoo\CrossCMS\AbstractDatabase,
"response" instanceof \JBZoo\CrossCMS\AbstractResponse,
"session" instanceof \JBZoo\CrossCMS\AbstractSession,
"request" instanceof \JBZoo\CrossCMS\AbstractRequest,
"config" instanceof \JBZoo\CrossCMS\AbstractConfig,
"assets" instanceof \JBZoo\CrossCMS\AbstractHeader,
"mailer" instanceof \JBZoo\CrossCMS\AbstractMailer,
"events" instanceof \JBZoo\CrossCMS\AbstractEvents,
"cache" instanceof \JBZoo\CrossCMS\AbstractCache,
"http" instanceof \JBZoo\CrossCMS\AbstractHttp,
"lang" instanceof \JBZoo\CrossCMS\AbstractLang,
"user" instanceof \JBZoo\CrossCMS\AbstractUser,
"date" instanceof \JBZoo\CrossCMS\AbstractDate,
"libs" instanceof \JBZoo\CrossCMS\AbstractLibs,
"env" instanceof \JBZoo\CrossCMS\AbstractEnv,
"path" instanceof \JBZoo\Path\Path,
],
];
}