Completed
Push — master ( b6ba2c...a36b4a )
by Delete
04:00
created
src/Source/Ini/GetRegExpForPatternTrait.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\Source\Ini;
5 5
 
@@ -23,6 +23,6 @@  discard block
 block discarded – undo
23 23
         $patternReplaced = preg_quote($patternReplaced, '/');
24 24
         $patternReplaced = str_replace(["\nA\n", "\nQ\n"], ['.*', '.'], $patternReplaced);
25 25
 
26
-        return '/^' . $patternReplaced . '$/';
26
+        return '/^'.$patternReplaced.'$/';
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/Source/Ini/DataSetsFromContentTrait.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\Source\Ini;
5 5
 
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $unprocessedBytes = '';
38 38
         foreach ($this->getContent() as $bytes) {
39
-            $combinedBytes = $unprocessedBytes . $bytes;
39
+            $combinedBytes = $unprocessedBytes.$bytes;
40 40
             $patternStart = strpos($combinedBytes, '[');
41 41
             if ($patternStart !== false) {
42 42
                 while (($nextPatternStart = strpos($combinedBytes, '[', $patternStart + 1)) !== false) {
Please login to merge, or discard this patch.
src/Parser/Sqlite/Adapter/AdapterFactory.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\Source;
5 5
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
                 self::$sourceClasses = $rememberClasses;
58 58
 
59 59
                 throw new InvalidArgumentException(
60
-                    "A value in the class name array is of type '" . gettype($className) . "'. String expected."
60
+                    "A value in the class name array is of type '".gettype($className)."'. String expected."
61 61
                 );
62 62
             }
63 63
         }
Please login to merge, or discard this patch.