Skip to content

Commit 523d5a5

Browse files
lrljoegithub-actions[bot]
authored andcommitted
Fix styling
1 parent ee3546c commit 523d5a5

File tree

1 file changed

+7
-16
lines changed

1 file changed

+7
-16
lines changed

src/Features/Filters/Views/NumberRangeFilter.php

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,23 @@ class NumberRangeFilter extends Filter
1111

1212
/**
1313
* Undocumented variable
14-
*
15-
* @var string
1614
*/
1715
public string $wireMethod = 'blur';
1816

1917
/**
2018
* The path to the view for this filter
21-
*
22-
* @var string
2319
*/
2420
protected string $view = 'livewire-tables::components.tools.filters.number-range';
2521

2622
/**
2723
* Undocumented variable
28-
*
29-
* @var string
3024
*/
3125
protected string $configPath = 'livewire-tables.numberRange.defaultConfig';
3226

3327
/**
3428
* Undocumented function
3529
*
36-
* @param array<mixed> $options
37-
* @return NumberRangeFilter
30+
* @param array<mixed> $options
3831
*/
3932
public function options(array $options = []): NumberRangeFilter
4033
{
@@ -56,8 +49,7 @@ public function getOptions(): array
5649
/**
5750
* Undocumented function
5851
*
59-
* @param array<mixed> $config
60-
* @return NumberRangeFilter
52+
* @param array<mixed> $config
6153
*/
6254
public function config(array $config = []): NumberRangeFilter
6355
{
@@ -79,8 +71,8 @@ public function getConfigs(): array
7971
/**
8072
* Validates that the value received by the Filter is valid
8173
*
82-
* @param array<mixed> $values
83-
* @return array<mixed>|boolean
74+
* @param array<mixed> $values
75+
* @return array<mixed>|bool
8476
*/
8577
public function validate(array $values): array|bool
8678
{
@@ -108,8 +100,7 @@ public function validate(array $values): array|bool
108100
/**
109101
* Checks if the Filter Value is empty
110102
*
111-
* @param array<mixed>|string $value
112-
* @return boolean
103+
* @param array<mixed>|string $value
113104
*/
114105
public function isEmpty(array|string $value): bool
115106
{
@@ -141,8 +132,8 @@ public function getDefaultValue(): array|string
141132
/**
142133
* Retrieves the Filter Value for use in the Filter Pills area
143134
*
144-
* @param mixed $values
145-
* @return array<mixed>|string|boolean|null
135+
* @param mixed $values
136+
* @return array<mixed>|string|bool|null
146137
*/
147138
public function getFilterPillValue($values): array|string|bool|null
148139
{

0 commit comments

Comments
 (0)