Various code cleanup.

This commit is contained in:
James Cole 2016-11-26 09:16:06 +01:00
parent 62e41f1997
commit e8dfbff73f
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
8 changed files with 33 additions and 21 deletions

View File

@ -34,6 +34,7 @@ class RequestedNewPassword extends Event
* *
* @param User $user * @param User $user
* @param string $token * @param string $token
* @param string $ipAddress
*/ */
public function __construct(User $user, string $token, string $ipAddress) public function __construct(User $user, string $token, string $ipAddress)
{ {

View File

@ -251,6 +251,7 @@ class AccountController extends Controller
} }
/** /**
* @param ARI $repository
* @param Account $account * @param Account $account
* *
* @return View * @return View

View File

@ -75,7 +75,8 @@ class LoginController extends Controller
// If the class is using the ThrottlesLogins trait, we can automatically throttle // If the class is using the ThrottlesLogins trait, we can automatically throttle
// the login attempts for this application. We'll key this by the username and // the login attempts for this application. We'll key this by the username and
// the IP address of the client making these requests into this application. // the IP address of the client making these requests into this application.
if ($lockedOut = $this->hasTooManyLoginAttempts($request)) { $lockedOut = $this->hasTooManyLoginAttempts($request);
if ($lockedOut) {
$this->fireLockoutEvent($request); $this->fireLockoutEvent($request);
return $this->sendLockoutResponse($request); return $this->sendLockoutResponse($request);

View File

@ -326,25 +326,29 @@ class BudgetController extends Controller
} }
/** /**
* @param BudgetRepositoryInterface $repository
* @param AccountRepositoryInterface $accountRepository
* @param Budget $budget * @param Budget $budget
* @param LimitRepetition $repetition * @param LimitRepetition $repetition
* *
* @return View * @return View
* @throws FireflyException * @throws FireflyException
*/ */
public function showWithRepetition( public function showWithRepetition(Budget $budget, LimitRepetition $repetition)
BudgetRepositoryInterface $repository, AccountRepositoryInterface $accountRepository, Budget $budget, LimitRepetition $repetition {
) {
if ($repetition->budgetLimit->budget->id != $budget->id) { if ($repetition->budgetLimit->budget->id != $budget->id) {
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 BudgetRepositoryInterface $repository */
$repository = app(BudgetRepositoryInterface::class);
/** @var AccountRepositoryInterface $accountRepository */
$accountRepository = app(AccountRepositoryInterface::class);
$start = $repetition->startdate; $start = $repetition->startdate;
$end = $repetition->enddate; $end = $repetition->enddate;
$page = intval(Input::get('page')) == 0 ? 1 : intval(Input::get('page')); $page = intval(Input::get('page')) == 0 ? 1 : intval(Input::get('page'));
$pageSize = intval(Preferences::get('transactionPageSize', 50)->data); $pageSize = intval(Preferences::get('transactionPageSize', 50)->data);
$subTitle = trans('firefly.budget_in_month', ['name' => $budget->name, 'month' => $repetition->startdate->formatLocalized($this->monthFormat)]); $subTitle = trans(
'firefly.budget_in_month', ['name' => $budget->name, 'month' => $repetition->startdate->formatLocalized($this->monthFormat)]
);
$accounts = $accountRepository->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET, AccountType::CASH]); $accounts = $accountRepository->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET, AccountType::CASH]);

View File

@ -203,9 +203,12 @@ class AccountController extends Controller
} }
/** /**
* @param JournalCollectorInterface $collector
* @param Account $account * @param Account $account
* @param Carbon $start * @param Carbon $start
* @param Carbon $end * @param Carbon $end
*
* @return \Illuminate\Http\JsonResponse
*/ */
public function incomeByCategory(JournalCollectorInterface $collector, Account $account, Carbon $start, Carbon $end) public function incomeByCategory(JournalCollectorInterface $collector, Account $account, Carbon $start, Carbon $end)
{ {

View File

@ -54,6 +54,7 @@ class TransactionController extends Controller
/** /**
* @param Request $request * @param Request $request
* @param JournalRepositoryInterface $repository
* @param string $what * @param string $what
* *
* @return View * @return View
@ -141,6 +142,8 @@ class TransactionController extends Controller
* @param Request $request * @param Request $request
* @param string $what * @param string $what
* *
* @param string $date
*
* @return View * @return View
*/ */
public function indexDate(Request $request, string $what, string $date) public function indexDate(Request $request, string $what, string $date)

View File

@ -15,7 +15,6 @@ namespace FireflyIII\Models;
use Carbon\Carbon; use Carbon\Carbon;
use Crypt; use Crypt;
use DB;
use FireflyIII\Exceptions\FireflyException; use FireflyIII\Exceptions\FireflyException;
use Illuminate\Contracts\Encryption\DecryptException; use Illuminate\Contracts\Encryption\DecryptException;
use Illuminate\Database\Eloquent\Builder as EloquentBuilder; use Illuminate\Database\Eloquent\Builder as EloquentBuilder;

View File

@ -59,7 +59,7 @@ class Preferences
} }
/** /**
* @param User $user * @param \FireflyIII\User $user
* @param array $list * @param array $list
* *
* @return array * @return array