mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 07:03:23 -06:00
38 lines
905 B
PHP
38 lines
905 B
PHP
<?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);
|
|
}
|
|
}
|
|
|
|
}
|