forked from mdmunir/yii2-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_ide_helper.php
52 lines (44 loc) · 1.3 KB
/
_ide_helper.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
<?php
exit("This file should not be included, only analyzed by your IDE");
class Yii extends \yii\BaseYii
{
/**
*
* @var \local\Application
*/
public static $app;
}
namespace yii\web {
/**
* 'username', 'fullname', 'address', 'bio',
'gender', 'avatarUrl', 'email', 'company'
* @property string $username Description
* @property string $fullname Description
* @property string $address Description
* @property string $bio Description
* @property string $gender Description
* @property string $avatarUrl Description
* @property string $email Description
* @property \app\models\ar\Company $company Description
* @property \app\models\ar\User|\app\models\ar\Device $identity
*
*/
class User extends \yii\base\Component
{
}
/**
* @property \app\classes\TokenManager $tokenManager
* @property \yii\authclient\Collection $authClientCollection
* @property \dee\tools\State $clientProfile
* @property User $user
* @property \dee\queue\Queue $queue
* @property \app\classes\Formatter $formatter
* @property \app\classes\Notification $notification
*/
class Application extends \yii\base\Application
{
public function handleRequest($request)
{
}
}
}