We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d356d3b + 5f9ba4e commit 8255215Copy full SHA for 8255215
2 files changed
tests/system/Validation/FormatRulesTest.php
@@ -18,14 +18,16 @@
18
19
/**
20
* @internal
21
+ *
22
+ * @no-final
23
*/
-final class FormatRulesTest extends CIUnitTestCase
24
+class FormatRulesTest extends CIUnitTestCase
25
{
26
public const ALPHABET = 'abcdefghijklmnopqrstuvwxyzABCDEFGHLIJKLMNOPQRSTUVWXYZ';
27
public const ALPHANUMERIC = 'abcdefghijklmnopqrstuvwxyzABCDEFGHLIJKLMNOPQRSTUVWXYZ0123456789';
28
- private Validation $validation;
- private array $config = [
29
+ protected Validation $validation;
30
+ protected array $config = [
31
'ruleSets' => [
32
Rules::class,
33
FormatRules::class,
@@ -216,6 +218,11 @@ public function urlProvider(): Generator
216
218
false,
217
219
220
],
221
+ [
222
+ "http://www.codeigniter.com\n",
223
+ false,
224
225
+ ],
226
];
227
}
228
0 commit comments