Removed duplicate code.

This commit is contained in:
James Cole
2016-01-29 07:29:21 +01:00
parent 6755ec7eb0
commit 170ffbae04
4 changed files with 41 additions and 84 deletions

View File

@@ -0,0 +1,37 @@
<?php
/**
* BillScanner.php
* Copyright (C) 2016 Sander Dorigo
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace FireflyIII\Support\Events;
use FireflyIII\Models\TransactionJournal;
/**
* Class BillScanner
*
* @package FireflyIII\Support\Events
*/
class BillScanner
{
/**
* @param TransactionJournal $journal
*/
static function scan(TransactionJournal $journal)
{
/** @var \FireflyIII\Repositories\Bill\BillRepositoryInterface $repository */
$repository = app('FireflyIII\Repositories\Bill\BillRepositoryInterface');
$list = $journal->user->bills()->where('active', 1)->where('automatch', 1)->get();
/** @var \FireflyIII\Models\Bill $bill */
foreach ($list as $bill) {
$repository->scan($bill, $journal);
}
}
}