Skip to content

Commit 2708eeb

Browse files
committed
Minor tweaks for return type
1 parent d777eec commit 2708eeb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/External/Filters/LivewireArrayExternalFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ abstract class LivewireArrayExternalFilter extends Component
2222
public array $optionsSelected = [];
2323

2424
#[Renderless]
25-
public function updatedOptionsSelected($value)
25+
public function updatedOptionsSelected(mixed $value): void
2626
{
2727
if (! $this->skipUpdate) {
2828
if (! $this->needsUpdating) {

src/External/Filters/Traits/HandlesTableEventsForExternalFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function setFilterValues(string $tableName, string $filterKey, string|arr
1515
}
1616

1717
#[Renderless]
18-
public function renderingHandlesTableEventsForExternalFilter()
18+
public function renderingHandlesTableEventsForExternalFilter(\Illuminate\View\View $view, array $data = []): void
1919
{
2020
if ($this->needsUpdating) {
2121
$this->needsUpdating = false;

src/Views/Filters/Traits/IsExternalArrayFilter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ protected function sendUpdateDispatch(array $returnValues): void
5959
}
6060

6161
#[Renderless]
62-
public function renderingIsExternalArrayFilter(): void
62+
public function renderingIsExternalArrayFilter(\Illuminate\View\View $view, array $data = []): void
6363
{
6464
$returnValues = [];
6565

0 commit comments

Comments
 (0)