Apply fixes from StyleCI (#735)

[ci skip] [skip ci]
This commit is contained in:
Dane Everitt 2017-11-05 13:59:51 -05:00 committed by GitHub
parent a4cf06ba77
commit 82b7bff7f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@ class MacroServiceProvider extends ServiceProvider
$i = 0;
while (($size / 1024) > 0.9) {
$size = $size / 1024;
++$i;
$i++;
}
return round($size, ($i < 2) ? 0 : $precision) . ' ' . $units[$i];