-
Notifications
You must be signed in to change notification settings - Fork 0
/
_ide_helper.php
79 lines (58 loc) · 829 Bytes
/
_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
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
<?php
class App extends think\facade\App
{
}
class Build extends think\facade\Build
{
}
class Cache extends think\facade\Cache
{
}
class Config extends think\facade\Config
{
}
class Cookie extends think\facade\Cookie
{
}
class Debug extends think\facade\Debug
{
}
class Env extends think\facade\Env
{
}
class Hook extends think\facade\Hook
{
}
class Lang extends think\facade\Lang
{
}
class Log extends think\facade\Log
{
}
class Request extends think\facade\Request
{
}
class Response extends think\facade\Response
{
}
class Route extends think\facade\Route
{
}
class Session extends think\facade\Session
{
}
class Url extends think\facade\Url
{
}
class Validate extends think\facade\Validate
{
}
class View extends think\facade\View
{
}
class Db extends \think\Db
{
}
class Bank extends app\facade\Rbac
{
}