diff --git a/tests/Constraints/TypeTest.php b/tests/Constraints/TypeTest.php index 0c584307..ca6bf7cf 100644 --- a/tests/Constraints/TypeTest.php +++ b/tests/Constraints/TypeTest.php @@ -58,7 +58,7 @@ public function testIndefiniteArticleForTypeInTypeCheckErrorMessage($type, $word */ public function testLooseTypeChecking() { - $v = new \StdClass(); + $v = new \stdClass(); $v->property = 'dataOne'; LooseTypeCheck::propertySet($v, 'property', 'dataTwo'); $this->assertEquals('dataTwo', $v->property); @@ -111,7 +111,7 @@ public function testValidateTypeNameWording() public function testValidateTypeException() { $t = new TypeConstraint(); - $data = new \StdClass(); + $data = new \stdClass(); $schema = json_decode('{"type": "notAValidTypeName"}'); $this->setExpectedException(