-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmethods.json
More file actions
94 lines (94 loc) · 2.87 KB
/
methods.json
File metadata and controls
94 lines (94 loc) · 2.87 KB
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
90
91
92
93
94
{
"methods": [
{
"text": "__construct",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.decon.php#object.construct",
"snippet": "__construct()${1}"
},
{
"text": "__destruct",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.decon.php#object.destruct",
"snippet": "__destruct()${1}"
},
{
"text": "__call",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.overloading.php#object.call",
"snippet": "__call()${1}"
},
{
"text": "__callStatic",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.overloading.php#object.callstatic",
"snippet": "__callStatic()${1}"
},
{
"text": "__get",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.overloading.php#object.get",
"snippet": "__get()${1}"
},
{
"text": "__set",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.overloading.php#object.set",
"snippet": "__set()${1}"
},
{
"text": "__isset",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.overloading.php#object.isset",
"snippet": "__isset()${1}"
},
{
"text": "__unset",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.overloading.php#object.unset",
"snippet": "__unset()${1}"
},
{
"text": "__sleep",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.magic.php#object.sleep",
"snippet": "__sleep()${1}"
},
{
"text": "__wakeup",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.magic.php#object.wakeup",
"snippet": "__wakeup()${1}"
},
{
"text": "__toString",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.magic.php#object.tostring",
"snippet": "__toString()${1}"
},
{
"text": "__invoke",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.magic.php#object.invoke",
"snippet": "__invoke()${1}"
},
{
"text": "__set_state",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.magic.php#object.set-state",
"snippet": "__set_state()${1}"
},
{
"text": "__clone",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.cloning.php#object.clone",
"snippet": "__clone()${1}"
},
{
"text": "__debugInfo",
"type": "method",
"descriptionMoreURL": "http://php.net/manual/en/language.oop5.magic.php#object.debuginfo",
"snippet": "__debugInfo()${1}"
}
]
}