@@ -17,11 +17,11 @@ discard block |
||
17 | 17 | */ |
18 | 18 | public function __construct( |
19 | 19 | protected string $group = 'default', |
20 | - protected string|null $strategy = null, |
|
21 | - protected string|null $description = null, |
|
20 | + protected string | null $strategy = null, |
|
21 | + protected string | null $description = null, |
|
22 | 22 | protected array $excludeCriteria = [], |
23 | 23 | protected array $includeCriteria = [], |
24 | - protected string|null $filterCriteriaEventName = null, |
|
24 | + protected string | null $filterCriteriaEventName = null, |
|
25 | 25 | ) { |
26 | 26 | } |
27 | 27 | |
@@ -30,17 +30,17 @@ discard block |
||
30 | 30 | return $this->group; |
31 | 31 | } |
32 | 32 | |
33 | - public function getStrategy(): string|null |
|
33 | + public function getStrategy(): string | null |
|
34 | 34 | { |
35 | 35 | return $this->strategy; |
36 | 36 | } |
37 | 37 | |
38 | - public function getDescription(): string|null |
|
38 | + public function getDescription(): string | null |
|
39 | 39 | { |
40 | 40 | return $this->description; |
41 | 41 | } |
42 | 42 | |
43 | - public function getFilterCriteriaEventName(): string|null |
|
43 | + public function getFilterCriteriaEventName(): string | null |
|
44 | 44 | { |
45 | 45 | return $this->filterCriteriaEventName; |
46 | 46 | } |
@@ -17,9 +17,9 @@ discard block |
||
17 | 17 | */ |
18 | 18 | public function __construct( |
19 | 19 | protected string $group = 'default', |
20 | - protected string|null $strategy = null, |
|
21 | - protected string|null $description = null, |
|
22 | - protected string|null $type = null, |
|
20 | + protected string | null $strategy = null, |
|
21 | + protected string | null $description = null, |
|
22 | + protected string | null $type = null, |
|
23 | 23 | private array $excludeCriteria = [], |
24 | 24 | private array $includeCriteria = [], |
25 | 25 | ) { |
@@ -30,17 +30,17 @@ discard block |
||
30 | 30 | return $this->group; |
31 | 31 | } |
32 | 32 | |
33 | - public function getStrategy(): string|null |
|
33 | + public function getStrategy(): string | null |
|
34 | 34 | { |
35 | 35 | return $this->strategy; |
36 | 36 | } |
37 | 37 | |
38 | - public function getDescription(): string|null |
|
38 | + public function getDescription(): string | null |
|
39 | 39 | { |
40 | 40 | return $this->description; |
41 | 41 | } |
42 | 42 | |
43 | - public function getType(): string|null |
|
43 | + public function getType(): string | null |
|
44 | 44 | { |
45 | 45 | return $this->type; |
46 | 46 | } |