Change the precision. Should not influence anything.

This commit is contained in:
James Cole
2016-03-16 17:47:07 +01:00
parent 64f273120e
commit fe9b8e834d
33 changed files with 4 additions and 57 deletions

View File

@@ -268,7 +268,6 @@ class AccountRepository implements AccountRepositoryInterface
if (count($ids) > 0) {
$accounts = $this->user->accounts()->whereIn('id', $ids)->where('accounts.active', 1)->get();
}
bcscale(2);
$accounts->each(
function (Account $account) use ($start, $end) {
@@ -309,7 +308,6 @@ class AccountRepository implements AccountRepositoryInterface
$start = clone session('start', new Carbon);
$end = clone session('end', new Carbon);
bcscale(2);
$accounts->each(
function (Account $account) use ($start, $end) {