-
Notifications
You must be signed in to change notification settings - Fork 35
/
ide.json
48 lines (48 loc) · 1.26 KB
/
ide.json
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
{
"$schema": "https://laravel-ide.com/schema/laravel-ide-v2.json",
"completions": [
{
"complete": "classFields",
"options": {
"fieldsFilter": {
"fetch": "own",
"modifier": [
"public"
]
}
},
"condition": [
{
"methodNames": [
"make",
"fire"
],
"parameters": [
1
],
"classFqn": [
"\\Thunk\\Verbs\\Event"
],
"place": "arrayKey"
}
]
}
],
"helperCode": {
"methodsWithConstructorParameters": [
{
"baseFqn": "Thunk\\Verbs\\Event",
"methods": [
{
"name": "make",
"returnType": "PendingEvent<$this>"
},
{
"name": "fire",
"returnType": "$this"
}
]
}
]
}
}