-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIde.php
53 lines (49 loc) · 2.23 KB
/
Ide.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
<?php
/**
* Yii bootstrap file.
* Used for enhanced IDE code autocompletion.
*/
class Yii extends \yii\BaseYii
{
/**
* @var BaseApplication|WebApplication|ConsoleApplication|WeixinApplication the application instance
*/
public static $app;
}
/**
* Class BaseApplication
* Used for properties that are identical for both WebApplication and ConsoleApplication
*
* @property xutl\aliyun\Aliyun $aliyun The aliyun component. This property is read-only. Extended component.
* @property yuncms\core\components\Settings $settings The settings component. This property is read-only. Extended component.
* @property yii\web\UrlManager $frontUrlManager The frontUrlManager component. This property is read-only. Extended component.
* @property yii\queue\cli\Queue $queue The queue component. This property is read-only. Extended component.
* @property xutl\tim\Tim $im The im component. This property is read-only. Extended component.
* @property xutl\aliyun\Live $live The live component. This property is read-only. Extended component.
* @property xutl\broadcast\Broadcast $broadcast The broadcast component. This property is read-only. Extended component.
* @property xutl\payment\Payment $payment The payment component. This property is read-only. Extended component.
* @property xutl\id98\Id98 $id98 The id98 component. This property is read-only. Extended component.
*/
abstract class BaseApplication extends yii\base\Application
{
}
/**
* Class WebApplication
* Include only Web application related components here
*
* @property yii\web\UrlManager $frontUrlManager The frontUrlManager component. This property is read-only. Extended component.
* @property \app\components\MyResponse $response The response component. This property is read-only. Extended component.
* @property \app\components\ErrorHandler $errorHandler The error handler application component. This property is read-only. Extended component.
*/
class WebApplication extends yii\web\Application
{
}
/**
* Class ConsoleApplication
* Include only Console application related components here
*
* @property \app\components\ConsoleUser $user The user component. This property is read-only. Extended component.
*/
class ConsoleApplication extends yii\console\Application
{
}