Completed
Push — master ( 3298fc...e8ff27 )
by Patrick
01:57
created
src/Math.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ExtendedStrings\Strings;
6 6
 
Please login to merge, or discard this patch.
src/Harmonic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ExtendedStrings\Strings;
6 6
 
Please login to merge, or discard this patch.
src/VibratingString.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ExtendedStrings\Strings;
6 6
 
Please login to merge, or discard this patch.
src/Cent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ExtendedStrings\Strings;
6 6
 
Please login to merge, or discard this patch.
src/Note.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace ExtendedStrings\Strings;
6 6
 
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
         $accidental = trim($accidental);
149 149
 
150 150
         foreach (self::$accidentalPatterns as $pattern => $replacement) {
151
-            if (preg_match('/^' . $pattern . '$/i', $accidental)) {
151
+            if (preg_match('/^'.$pattern.'$/i', $accidental)) {
152 152
                 return $replacement;
153 153
             }
154 154
         }
Please login to merge, or discard this patch.