1 | <?php |
||
9 | abstract class Component extends BaseComponent |
||
10 | { |
||
11 | /** |
||
12 | * {@inheritDoc} |
||
13 | */ |
||
14 | public function render() |
||
24 | |||
25 | /** |
||
26 | * Returns a boolean wether the form is wired to a Livewire component. |
||
27 | * |
||
28 | * @return boolean |
||
29 | */ |
||
30 | public function isWired(): bool |
||
34 | |||
35 | /** |
||
36 | * The inversion of 'isWired()'. |
||
37 | * |
||
38 | * @return boolean |
||
39 | */ |
||
40 | public function isNotWired(): bool |
||
44 | } |
||
45 |