Skip to content

Commit 81493a2

Browse files
committed
style: correct code style violations
1 parent 4f24aca commit 81493a2

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

src/JsonSchema/Constraints/Drafts/Draft06/Draft06Constraint.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class Draft06Constraint extends Constraint
1414
{
1515
public function __construct(?\JsonSchema\Constraints\Factory $factory = null)
1616
{
17-
1817
parent::__construct(new Factory(
1918
$factory ? $factory->getSchemaStorage() : new SchemaStorage(),
2019
$factory ? $factory->getUriRetriever() : new UriRetriever(),

src/JsonSchema/Constraints/Drafts/Draft06/MinimumConstraint.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function check(&$value, $schema = null, ?JsonPointer $path = null, $i = n
2525
return;
2626
}
2727

28-
if (! is_numeric($value)) {
28+
if (!is_numeric($value)) {
2929
return;
3030
}
3131

src/JsonSchema/Constraints/Drafts/Draft06/RefConstraint.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
namespace JsonSchema\Constraints\Drafts\Draft06;
66

7-
use JsonSchema\ConstraintError;
87
use JsonSchema\Constraints\ConstraintInterface;
98
use JsonSchema\Entity\ErrorBagProxy;
109
use JsonSchema\Entity\JsonPointer;

0 commit comments

Comments
 (0)