Fix some scrutiniser issues.

This commit is contained in:
James Cole
2017-01-14 18:52:52 +01:00
parent cc0057cc56
commit 0b5cab99cf
3 changed files with 3 additions and 4 deletions

View File

@@ -278,8 +278,6 @@ class BudgetController extends Controller
throw new FireflyException('This budget limit is not part of this budget.'); throw new FireflyException('This budget limit is not part of this budget.');
} }
/** @var AccountRepositoryInterface $accountRepository */
$accountRepository = app(AccountRepositoryInterface::class);
$page = intval($request->get('page')) == 0 ? 1 : intval($request->get('page')); $page = intval($request->get('page')) == 0 ? 1 : intval($request->get('page'));
$pageSize = intval(Preferences::get('transactionPageSize', 50)->data); $pageSize = intval(Preferences::get('transactionPageSize', 50)->data);
$subTitle = trans( $subTitle = trans(
@@ -289,7 +287,6 @@ class BudgetController extends Controller
'end' => $budgetLimit->end_date->formatLocalized($this->monthAndDayFormat), 'end' => $budgetLimit->end_date->formatLocalized($this->monthAndDayFormat),
] ]
); );
$accounts = $accountRepository->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET, AccountType::CASH]);
// collector: // collector:
/** @var JournalCollectorInterface $collector */ /** @var JournalCollectorInterface $collector */

View File

@@ -230,6 +230,8 @@ class TagController extends Controller
public function show(Request $request, JournalCollectorInterface $collector, Tag $tag, string $moment = '') public function show(Request $request, JournalCollectorInterface $collector, Tag $tag, string $moment = '')
{ {
$range = Preferences::get('viewRange', '1M')->data; $range = Preferences::get('viewRange', '1M')->data;
$start = new Carbon;
$end = new Carbon;
if (strlen($moment) > 0) { if (strlen($moment) > 0) {
try { try {

View File

@@ -50,7 +50,7 @@ interface ExportJobRepositoryInterface
/** /**
* @param string $key * @param string $key
* *
* @return ExportJob|null * @return ExportJob
*/ */
public function findByKey(string $key): ExportJob; public function findByKey(string $key): ExportJob;