-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.stubs.php
More file actions
339 lines (247 loc) · 12.7 KB
/
.stubs.php
File metadata and controls
339 lines (247 loc) · 12.7 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
<?php
namespace Livewire\Features\SupportTesting {
use Closure;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Collection;
class Testable {
public function selectTableRecords(array | Collection $records): static {}
public function assertCanRenderTableColumn(string $name): static {}
public function assertCanNotRenderTableColumn(string $name): static {}
public function assertTableColumnExists(string $name, ?Closure $checkColumnUsing = null, $record = null): static {}
public function assertTableColumnDoesNotExist(string $name, ?Closure $checkColumnUsing = null, $record = null): static {}
public function assertTableColumnVisible(string $name): static {}
public function assertTableColumnHidden(string $name): static {}
public function assertTableColumnStateSet(string $name, $state, $record): static {}
public function assertTableColumnStateNotSet(string $name, $state, $record): static {}
public function assertTableColumnSummarizerExists(string $columnName, string $summarizerId): static {}
public function assertTableColumnSummarySet(string $columnName, string $summarizerId, $state, bool $isCurrentPaginationPageOnly = false): static {}
public function assertTableColumnSummaryNotSet(string $columnName, string $summarizerId, $state, bool $isCurrentPaginationPageOnly = false): static {}
public function assertTableColumnFormattedStateSet(string $name, $state, $record): static {}
public function assertTableColumnFormattedStateNotSet(string $name, $state, $record): static {}
public function assertTableColumnHasExtraAttributes(string $name, array $attributes, $record): static {}
public function assertTableColumnDoesNotHaveExtraAttributes(string $name, array $attributes, $record): static {}
public function assertTableColumnHasDescription(string $name, $description, $record, $position = 'below'): static {}
public function assertTableColumnDoesNotHaveDescription(string $name, $description, $record, $position = 'below'): static {}
public function assertTableSelectColumnHasOptions(string $name, array $options, $record): static {}
public function assertTableSelectColumnDoesNotHaveOptions(string $name, array $options, $record): static {}
public function sortTable(?string $name = null, ?string $direction = null): static {}
public function searchTable(?string $search = null): static {}
public function searchTableColumns(array $searches): static {}
public function filterTable(string $name, $data = null): static {}
public function resetTableFilters(): static {}
public function removeTableFilter(string $filter, ?string $field = null): static {}
public function removeTableFilters(): static {}
public function assertTableFilterVisible(string $name): static {}
public function assertTableFilterHidden(string $name): static {}
public function assertTableFilterExists(string $name, ?Closure $checkFilterUsing = null): static {}
public function assertCanSeeTableRecords(array | Collection $records, bool $inOrder = false): static {}
public function assertCanNotSeeTableRecords(array | Collection $records): static {}
public function assertCountTableRecords(int $count): static {}
public function toggleAllTableColumns(bool $condition = true): static {}
public function loadTable(): static {}
/**
* @deprecated Use `mountAction()` instead.
*/
public function mountTableAction(string | array $name, $record = null): static {}
/**
* @deprecated Use `unmountAction()` instead.
*/
public function unmountTableAction(): static {}
/**
* @deprecated Use `fillForm()` instead.
*/
public function setTableActionData(array $data): static {}
/**
* @deprecated Use `assertSchemaStateSet()` instead.
*/
public function assertTableActionDataSet(array | Closure $state): static {}
/**
* @deprecated Use `callAction()` instead.
*/
public function callTableAction(string | array $name, $record = null, array $data = [], array $arguments = []): static {}
public function callTableColumnAction(string $name, $record = null): static {}
/**
* @deprecated Use `callMountedAction()` instead.
*/
public function callMountedTableAction(array $arguments = []): static {}
/**
* @deprecated Use `assertActionExists()` instead.
*/
public function assertTableActionExists(string | array $name, ?Closure $checkActionUsing = null, $record = null): static {}
/**
* @deprecated Use `assertActionDoesNotExist()` instead.
*/
public function assertTableActionDoesNotExist(string | array $name, ?Closure $checkActionUsing = null, $record = null): static {}
public function assertTableActionsExistInOrder(array $names): static {}
public function assertTableHeaderActionsExistInOrder(array $names): static {}
public function assertTableEmptyStateActionsExistInOrder(array $names): static {}
/**
* @deprecated Use `assertActionVisible()` instead.
*/
public function assertTableActionVisible(string | array $name, $record = null): static {}
/**
* @deprecated Use `assertActionHidden()` instead.
*/
public function assertTableActionHidden(string | array $name, $record = null): static {}
/**
* @deprecated Use `assertActionEnabled()` instead.
*/
public function assertTableActionEnabled(string | array $name, $record = null): static {}
/**
* @deprecated Use `assertActionDisabled()` instead.
*/
public function assertTableActionDisabled(string | array $name, $record = null): static {}
/**
* @deprecated Use `assertActionMounted()` instead.
*/
public function assertTableActionMounted(string | array $name): static {}
/**
* @deprecated Use `assertActionNotMounted()` instead.
*/
public function assertTableActionNotMounted(string | array $name): static {}
/**
* @deprecated Use `assertActionHalted()` instead.
*/
public function assertTableActionHalted(string | array $name): static {}
/**
* @deprecated Use `assertHasFormErrors()` instead.
*/
public function assertHasTableActionErrors(array $keys = []): static {}
/**
* @deprecated Use `assertHasNoFormErrors()` instead.
*/
public function assertHasNoTableActionErrors(array $keys = []): static {}
/**
* @deprecated Use `selectTableRecords()` and `mountAction()` instead.
*/
public function mountTableBulkAction(string $name, array | Collection $records): static {}
/**
* @deprecated Use `fillForm()` instead.
*/
public function setTableBulkActionData(array $data): static {}
/**
* @deprecated Use `assertSchemaStateSet()` instead.
*/
public function assertTableBulkActionDataSet(array | Closure $state): static {}
/**
* @deprecated Use `callAction()` instead.
*/
public function callTableBulkAction(string $name, array | Collection $records, array $data = [], array $arguments = []): static {}
/**
* @deprecated Use `callMountedAction()` instead.
*/
public function callMountedTableBulkAction(array $arguments = []): static {}
/**
* @deprecated Use `assertActionExists()` instead.
*/
public function assertTableBulkActionExists(string $name): static {}
/**
* @deprecated Use `assertActionDoesNotExist()` instead.
*/
public function assertTableBulkActionDoesNotExist(string $name): static {}
/**
* @deprecated Use `assertActionListInOrder()` instead.
*/
public function assertTableBulkActionsExistInOrder(array $names): static {}
/**
* @deprecated Use `assertActionVisible()` instead.
*/
public function assertTableBulkActionVisible(string $name): static {}
/**
* @deprecated Use `assertActionHidden()` instead.
*/
public function assertTableBulkActionHidden(string $name): static {}
/**
* @deprecated Use `assertActionEnabled()` instead.
*/
public function assertTableBulkActionEnabled(string $name): static {}
/**
* @deprecated Use `assertActionDisabled()` instead.
*/
public function assertTableBulkActionDisabled(string $name): static {}
/**
* @deprecated Use `assertActionHasIcon()` instead.
*/
public function assertTableActionHasIcon(string | array $name, string $icon, $record = null): static {}
/**
* @deprecated Use `assertActionDoesNotHaveIcon()` instead.
*/
public function assertTableActionDoesNotHaveIcon(string | array $name, string $icon, $record = null): static {}
/**
* @deprecated Use `assertActionHasLabel()` instead.
*/
public function assertTableActionHasLabel(string | array $name, string $label, $record = null): static {}
/**
* @deprecated Use `assertActionDoesNotHaveLabel()` instead.
*/
public function assertTableActionDoesNotHaveLabel(string | array $name, string $label, $record = null): static {}
/**
* @deprecated Use `assertActionHasColor()` instead.
*/
public function assertTableActionHasColor(string | array $name, string | array $color, $record = null): static {}
/**
* @deprecated Use `assertActionDoesNotHaveColor()` instead.
*/
public function assertTableActionDoesNotHaveColor(string | array $name, string | array $color, $record = null): static {}
/**
* @deprecated Use `assertActionHasIcon()` instead.
*/
public function assertTableBulkActionHasIcon(string $name, string $icon): static {}
/**
* @deprecated Use `assertActionDoesNotHaveIcon()` instead.
*/
public function assertTableBulkActionDoesNotHaveIcon(string $name, string $icon): static {}
/**
* @deprecated Use `assertActionHasLabel()` instead.
*/
public function assertTableBulkActionHasLabel(string $name, string $label): static {}
/**
* @deprecated Use `assertActionDoesNotHaveLabel()` instead.
*/
public function assertTableBulkActionDoesNotHaveLabel(string $name, string $label): static {}
/**
* @deprecated Use `assertActionHasColor()` instead.
*/
public function assertTableBulkActionHasColor(string $name, string | array $color): static {}
/**
* @deprecated Use `assertActionDoesNotHaveColor()` instead.
*/
public function assertTableBulkActionDoesNotHaveColor(string $name, string | array $color): static {}
/**
* @deprecated Use `assertActionHasUrl()` instead.
*/
public function assertTableActionHasUrl(string | array $name, string $url, $record = null): static {}
/**
* @deprecated Use `assertActionDoesNotHaveUrl()` instead.
*/
public function assertTableActionDoesNotHaveUrl(string | array $name, string $url, $record = null): static {}
/**
* @deprecated Use `assertActionShouldOpenUrlInNewTab()` instead.
*/
public function assertTableActionShouldOpenUrlInNewTab(string | array $name, $record = null): static {}
/**
* @deprecated Use `assertActionShouldNotOpenUrlInNewTab()` instead.
*/
public function assertTableActionShouldNotOpenUrlInNewTab(string | array $name, $record = null): static {}
/**
* @deprecated Use `assertActionMounted()` instead.
*/
public function assertTableBulkActionMounted(string $name): static {}
/**
* @deprecated Use `assertActionNotMounted()` instead.
*/
public function assertTableBulkActionNotMounted(string $name): static {}
/**
* @deprecated Use `assertActionHalted()` instead.
*/
public function assertTableBulkActionHalted(string $name): static {}
/**
* @deprecated Use `assertHasFormErrors()` instead.
*/
public function assertHasTableBulkActionErrors(array $keys = []): static {}
/**
* @deprecated Use `assertHasNoFormErrors()` instead.
*/
public function assertHasNoTableBulkActionErrors(array $keys = []): static {}
}
}