From 6ab09a3603a1549ff5074ae491f67b4d50505d51 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 11 Feb 2016 11:22:27 +0100 Subject: [PATCH] Undo PHP7 thing in master. --- app/Repositories/Account/AccountRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Repositories/Account/AccountRepository.php b/app/Repositories/Account/AccountRepository.php index f50c270a9b..156d6d295c 100644 --- a/app/Repositories/Account/AccountRepository.php +++ b/app/Repositories/Account/AccountRepository.php @@ -380,7 +380,7 @@ class AccountRepository implements AccountRepositoryInterface /** * @return string */ - public function sumOfEverything(): string + public function sumOfEverything() { return strval(Auth::user()->transactions()->sum('amount')); }