Removed unnecessary variable.

This commit is contained in:
James Cole 2017-06-05 07:03:20 +02:00
parent a487c7b4b2
commit 0b47e5d05d
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -82,9 +82,8 @@ class UpgradeDatabase extends Command
*/
private function currencyInfoToTransactions()
{
$count = 0;
$expanded = 0;
$set = TransactionJournal::with('transactions')->get();
$count = 0;
$set = TransactionJournal::with('transactions')->get();
/** @var TransactionJournal $journal */
foreach ($set as $journal) {
/** @var Transaction $transaction */