Completed
Push — master ( 8c0b34...7b920c )
by Patrick
01:31
created
src/HarmonicCalculator.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
         return (
75 75
             $harmonic->isNatural()
76 76
             || ($distance >= $this->minDistance && $distance <= $this->maxDistance)
77
-          ) && $bowedDistance >= $this->minBowedDistance;
77
+            ) && $bowedDistance >= $this->minBowedDistance;
78 78
     }
79 79
 
80 80
     /**
@@ -82,9 +82,9 @@  discard block
 block discarded – undo
82 82
      */
83 83
     private function getPhysicalStringLength(Harmonic $harmonic): float
84 84
     {
85
-      $string = $harmonic->getString();
85
+        $string = $harmonic->getString();
86 86
 
87
-      return $string instanceof InstrumentStringInterface
87
+        return $string instanceof InstrumentStringInterface
88 88
           ? $string->getPhysicalLength()
89 89
           : 500.0;
90 90
     }
Please login to merge, or discard this patch.