Completed
Push — develop ( 71868c...88717d )
by Freddie
03:24
created
src/Validators/Constraints/MaxConstraintValidator.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/PropertyTypeValidator.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/PropertyDataTypeValidator.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/PropertyNameValidator.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/PropertyConstraintsValidator.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/Validations/ValidationInterface.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/Validations/SchemaAttributeValidation.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
  *
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         }
71 71
 
72 72
         if (!empty($notAllowedProperties)) {
73
-            throw new InvalidSchemaAttributeException('Properties unknow: ' . \implode(', ', $notAllowedProperties));
73
+            throw new InvalidSchemaAttributeException('Properties unknow: '.\implode(', ', $notAllowedProperties));
74 74
         }
75 75
 
76 76
         foreach ($this->requiredProperties as $property) {
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
         if (!empty($requiredPropertiesNotPresent)) {
83 83
             throw new InvalidSchemaAttributeException(
84
-                'Required properties are missing: ' . \implode(', ', $requiredPropertiesNotPresent)
84
+                'Required properties are missing: '.\implode(', ', $requiredPropertiesNotPresent)
85 85
             );
86 86
         }
87 87
 
Please login to merge, or discard this patch.
src/Exception/InvalidSchemaAttributeException.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/Exception/InvalidFileSchemaException.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.