Moved JournalCollector to other package to encourage reuse

This commit is contained in:
Robert Horlings 2016-02-18 20:01:53 +01:00
parent 2ddacf48d4
commit 50e5c21735
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ class Processor
public function collectJournals()
{
$args = [$this->accounts, Auth::user(), $this->settings['startDate'], $this->settings['endDate']];
$journalCollector = app('FireflyIII\Export\JournalCollector', $args);
$journalCollector = app('FireflyIII\Repositories\Journal\JournalCollector', $args);
$this->journals = $journalCollector->collect();
}

View File

@ -8,7 +8,7 @@ declare(strict_types = 1);
* of the MIT license. See the LICENSE file for details.
*/
namespace FireflyIII\Export;
namespace FireflyIII\Repositories\Journal;
use Carbon\Carbon;
use FireflyIII\User;