Passed
Branch master (bb00ee)
by Simon
12:02
created
src/Enum.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * This file is part of the Enum package.
5 5
  * For the full copyright information please view the LICENCE file that was
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
       * @return self
65 65
       * @throws InvalidEnumValueException - Thrown if the value passed is not an enum constant
66 66
       */
67
-     final public static function __callStatic(string $method, array $args = []): self
67
+     final public static function __callStatic(string $method, array $args = [ ]): self
68 68
      {
69 69
          try {
70 70
              return new static(strtoupper($method));
Please login to merge, or discard this patch.
src/Type/EnumType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * This file is part of the Enum package.
5 5
  * For the full copyright information please view the LICENCE file that was
Please login to merge, or discard this patch.
src/Enums/Weekday.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * This file is part of the Enum package.
5 5
  * For the full copyright information please view the LICENCE file that was
Please login to merge, or discard this patch.
src/Enums/Boolean.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * This file is part of the Enum package.
5 5
  * For the full copyright information please view the LICENCE file that was
Please login to merge, or discard this patch.
src/Exceptions/InvalidEnumValueException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 /**
4 4
  * This file is part of the Enum package.
5 5
  * For the full copyright information please view the LICENCE file that was
Please login to merge, or discard this patch.