Test Setup Failed
Branch master (933cc6)
by Delete
04:42
created
src/Exception/SourceException.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
 namespace Crossjoin\Browscap\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Exception/ParserRuntimeException.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
 namespace Crossjoin\Browscap\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Exception/SourceConditionNotSatisfiedException.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
 namespace Crossjoin\Browscap\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Formatter/FormatterInterface.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
 namespace Crossjoin\Browscap\Formatter;
5 5
 
Please login to merge, or discard this patch.
src/Formatter/PhpGetBrowser.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
 namespace Crossjoin\Browscap\Formatter;
5 5
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      */
20 20
     public function __construct(bool $returnArray = false)
21 21
     {
22
-        $options = self::KEY_LOWER | self::VALUE_BOOLEAN_TO_STRING  | self::VALUE_REG_EXP_LOWER;
22
+        $options = self::KEY_LOWER | self::VALUE_BOOLEAN_TO_STRING | self::VALUE_REG_EXP_LOWER;
23 23
         if ($returnArray) {
24 24
             $options |= self::RETURN_ARRAY;
25 25
         } else {
Please login to merge, or discard this patch.
src/Formatter/Optimized.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
 namespace Crossjoin\Browscap\Formatter;
5 5
 
Please login to merge, or discard this patch.
src/Formatter/Formatter.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
 namespace Crossjoin\Browscap\Formatter;
5 5
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
         $newKey = $key;
94 94
         if (($this->getOptions() & self::KEY_LOWER) > 0) {
95 95
             $newKey = strtolower($key);
96
-        } elseif(($this->getOptions() & self::KEY_UPPER) > 0) {
96
+        } elseif (($this->getOptions() & self::KEY_UPPER) > 0) {
97 97
             $newKey = strtoupper($key);
98 98
         }
99 99
 
Please login to merge, or discard this patch.
src/Command/Update.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
 namespace Crossjoin\Browscap\Command;
5 5
 
Please login to merge, or discard this patch.
src/Type.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
 namespace Crossjoin\Browscap;
5 5
 
Please login to merge, or discard this patch.