generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path.stubs.php
50 lines (27 loc) · 1.92 KB
/
.stubs.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
<?php
namespace Livewire\Features\SupportTesting {
class Testable {
public function assertPropertyWired(string $property): self {}
public function assertPropertyNotWired(string $property): self {}
public function assertPropertyEntangled(string $property): self {}
public function assertPropertyNotEntangled(string $property): self {}
public function assertMethodWired(string $method): self {}
public function assertMethodNotWired(string $method): self {}
public function assertMethodWiredToAction(string $action, string $methodName): self {}
public function assertMethodNotWiredToAction(string $action, string $methodName): self {}
public function assertMethodWiredToForm(string $method): self {}
public function assertMethodNotWiredToForm(string $method): self {}
public function assertMethodWiredToEvent(string $method, string $event): self {}
public function assertMethodNotWiredToEvent(string $method, string $event): self {}
public function assertMethodWiredToEventWithoutModifiers(string $method, string $event): self {}
public function assertMethodNotWiredToEventWithoutModifiers(string $method, string $event): self {}
public function assertContainsLivewireComponent(string $componentNeedleClass): self {}
public function assertDoesNotContainLivewireComponent(string $componentNeedleClass): self {}
public function assertContainsBladeComponent(string $componentNeedleClass): self {}
public function assertDoesNotContainBladeComponent(string $componentNeedleClass): self {}
public function assertSeeBefore($valueBefore, $valueAfter): self {}
public function assertDoNotSeeBefore($valueBefore, $valueAfter): self {}
public function assertFileDownloadedContains($content): self {}
public function assertFileDownloadedNotContains($content): self {}
}
}