Completed
Push — master ( 7d9b81...ed1eff )
by Adam
09:05
created
src/Format/Byte.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
     /**
10 10
      * @var array $units
11 11
      */
12
-    private $units = ["Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];
12
+    private $units = [ "Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB" ];
13 13
 
14 14
     /**
15 15
      * @var integer $power
@@ -55,6 +55,6 @@  discard block
 block discarded – undo
55 55
      */
56 56
     public function __toString()
57 57
     {
58
-        return $this->getValue() ? $this->power() . ' ' . $this->getUnit() : '0 bytes';
58
+        return $this->getValue() ? $this->power().' '.$this->getUnit() : '0 bytes';
59 59
     }      
60 60
 }
Please login to merge, or discard this patch.