We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed89b19 commit 726540dCopy full SHA for 726540d
tests/Validator/MultipleOfTest.php
@@ -16,7 +16,7 @@ public function testIsValid()
16
$validator = new AllOf([new Text(20), new URL()], Validator::TYPE_STRING);
17
18
$this->assertEquals('string', $validator->getType());
19
- $this->assertEquals("1Value must be a valid string and at least 1 chars and no longer than 20 chars", $validator->getDescription());
+ $this->assertEquals("Value must be a valid string and at least 1 chars and no longer than 20 chars", $validator->getDescription());
20
21
// Valid URL but invalid text length
22
$this->assertFalse($validator->isValid('http://example.com/very-long-url'));
0 commit comments