Completed
Push — develop ( 71868c...88717d )
by Freddie
03:24
created
tests/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /*
3 3
  * This file is part of FlexPHP.
4 4
  *
Please login to merge, or discard this patch.
tests/Unit/Validations/SchemaAttributeValidationTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /*
3 3
  * This file is part of FlexPHP.
4 4
  *
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
 
199 199
     public function propertyDataTypeValid(): array
200 200
     {
201
-        return \array_map(function ($dataType) {
201
+        return \array_map(function($dataType) {
202 202
             return [$dataType];
203 203
         }, PropertyDataTypeValidator::ALLOWED_DATATYPES);
204 204
     }
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
 
219 219
     public function propertyTypeValid(): array
220 220
     {
221
-        return \array_map(function ($dataType) {
221
+        return \array_map(function($dataType) {
222 222
             return [$dataType];
223 223
         }, PropertyTypeValidator::ALLOWED_TYPES);
224 224
     }
Please login to merge, or discard this patch.
tests/Unit/SchemaTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /*
3 3
  * This file is part of FlexPHP.
4 4
  *
Please login to merge, or discard this patch.
src/Schema.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /*
3 3
  * This file is part of FlexPHP.
4 4
  *
Please login to merge, or discard this patch.
src/Constants/Keyword.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /*
3 3
  * This file is part of FlexPHP.
4 4
  *
Please login to merge, or discard this patch.
src/SchemaInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /*
3 3
  * This file is part of FlexPHP.
4 4
  *
Please login to merge, or discard this patch.
src/Validators/Constraints/RequiredConstraintValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /*
3 3
  * This file is part of FlexPHP.
4 4
  *
Please login to merge, or discard this patch.
src/Validators/Constraints/RangeConstraintValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /*
3 3
  * This file is part of FlexPHP.
4 4
  *
Please login to merge, or discard this patch.
src/Validators/Constraints/EqualToConstraintValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 /*
3 3
  * This file is part of FlexPHP.
4 4
  *
Please login to merge, or discard this patch.