Skip to content

Commit 0a00c08

Browse files
committed
update tests signature
1 parent b4112d5 commit 0a00c08

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/system/Validation/RulesTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ public static function provideInList(): iterable
669669
}
670670

671671
#[DataProvider('provideRequiredWith')]
672-
public function testRequiredWith(?string $field, ?string $check, bool $expected): void
672+
public function testRequiredWith(string $field, ?string $check, bool $expected): void
673673
{
674674
$data = [
675675
'foo' => 'bar',
@@ -779,7 +779,7 @@ public static function provideRequiredWithAndOtherRuleWithValueZero(): iterable
779779
}
780780

781781
#[DataProvider('provideRequiredWithout')]
782-
public function testRequiredWithout(?string $field, ?string $check, bool $expected): void
782+
public function testRequiredWithout(string $field, ?string $check, bool $expected): void
783783
{
784784
$data = [
785785
'foo' => 'bar',

0 commit comments

Comments
 (0)