@@ -85,7 +85,7 @@ public function testRegexMatchFalse(): void
8585 }
8686
8787 /**
88- * @dataProvider urlProvider
88+ * @dataProvider provideValidUrl
8989 */
9090 public function testValidURL (?string $ url , bool $ isLoose , bool $ isStrict ): void
9191 {
@@ -101,7 +101,7 @@ public function testValidURL(?string $url, bool $isLoose, bool $isStrict): void
101101 }
102102
103103 /**
104- * @dataProvider urlProvider
104+ * @dataProvider provideValidUrl
105105 */
106106 public function testValidURLStrict (?string $ url , bool $ isLoose , bool $ isStrict ): void
107107 {
@@ -129,7 +129,7 @@ public function testValidURLStrictWithSchema(): void
129129 $ this ->assertFalse ($ this ->validation ->run ($ data ));
130130 }
131131
132- public function urlProvider (): iterable
132+ public function provideValidUrl (): iterable
133133 {
134134 yield from [
135135 [
@@ -802,7 +802,7 @@ public function provideNumeric(): iterable
802802 /**
803803 * @see https://github.com/codeigniter4/CodeIgniter4/issues/5374
804804 *
805- * @dataProvider integerInvalidTypeDataProvider
805+ * @dataProvider provideInvalidIntegerType
806806 *
807807 * @param mixed $value
808808 */
@@ -821,7 +821,7 @@ public function testIntegerWithInvalidTypeData($value, bool $expected): void
821821 /**
822822 * @see https://github.com/codeigniter4/CodeIgniter4/issues/5374
823823 *
824- * @dataProvider integerInvalidTypeDataProvider
824+ * @dataProvider provideInvalidIntegerType
825825 *
826826 * @param mixed $value
827827 */
@@ -837,7 +837,7 @@ public function testNumericWithInvalidTypeData($value, bool $expected): void
837837 $ this ->assertsame ($ expected , $ this ->validation ->run ($ data ));
838838 }
839839
840- public function integerInvalidTypeDataProvider (): iterable
840+ public function provideInvalidIntegerType (): iterable
841841 {
842842 // TypeError : CodeIgniter\Validation\FormatRules::integer(): Argument #1 ($str) must be of type ?string, array given
843843 // yield 'array with int' => [
0 commit comments