Skip to content

Commit b78d9ec

Browse files
authored
Merge pull request #485 from localheinz/fix/case
Fix: Case mismatch
2 parents a82e661 + c8abb13 commit b78d9ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Constraints/TypeTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function testIndefiniteArticleForTypeInTypeCheckErrorMessage($type, $word
5858
*/
5959
public function testLooseTypeChecking()
6060
{
61-
$v = new \StdClass();
61+
$v = new \stdClass();
6262
$v->property = 'dataOne';
6363
LooseTypeCheck::propertySet($v, 'property', 'dataTwo');
6464
$this->assertEquals('dataTwo', $v->property);
@@ -111,7 +111,7 @@ public function testValidateTypeNameWording()
111111
public function testValidateTypeException()
112112
{
113113
$t = new TypeConstraint();
114-
$data = new \StdClass();
114+
$data = new \stdClass();
115115
$schema = json_decode('{"type": "notAValidTypeName"}');
116116

117117
$this->setExpectedException(

0 commit comments

Comments
 (0)