Various fixes for tests and code quality.

This commit is contained in:
James Cole
2018-07-20 20:53:48 +02:00
parent 49ff6febe5
commit ec7ef3a813
28 changed files with 79 additions and 50 deletions

View File

@@ -43,7 +43,7 @@ use Log;
class NoCategoryController extends Controller
{
/** @var JournalRepositoryInterface */
/** @var JournalRepositoryInterface Journals and transactions overview */
private $journalRepos;
/** @var CategoryRepositoryInterface */
private $repository;

View File

@@ -47,9 +47,9 @@ use Illuminate\Support\Collection;
class ShowController extends Controller
{
/** @var AccountRepositoryInterface */
/** @var AccountRepositoryInterface The account repository */
private $accountRepos;
/** @var JournalRepositoryInterface */
/** @var JournalRepositoryInterface Journals and transactions overview */
private $journalRepos;
/** @var CategoryRepositoryInterface */
private $repository;