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

@@ -37,7 +37,7 @@ use Log;
*/
class BulkController extends Controller
{
/** @var JournalRepositoryInterface */
/** @var JournalRepositoryInterface Journals and transactions overview */
private $repository;

View File

@@ -38,7 +38,7 @@ use View;
*/
class ConvertController extends Controller
{
/** @var JournalRepositoryInterface */
/** @var JournalRepositoryInterface Journals and transactions overview */
private $repository;
/**

View File

@@ -36,7 +36,7 @@ use URL;
*/
class LinkController extends Controller
{
/** @var JournalRepositoryInterface */
/** @var JournalRepositoryInterface Journals and transactions overview */
private $journalRepository;
/** @var LinkTypeRepositoryInterface */
private $repository;

View File

@@ -47,7 +47,7 @@ use Symfony\Component\HttpFoundation\ParameterBag;
*/
class MassController extends Controller
{
/** @var JournalRepositoryInterface */
/** @var JournalRepositoryInterface Journals and transactions overview */
private $repository;
/**

View File

@@ -50,7 +50,7 @@ class SingleController extends Controller
private $attachments;
/** @var BudgetRepositoryInterface */
private $budgets;
/** @var JournalRepositoryInterface */
/** @var JournalRepositoryInterface Journals and transactions overview */
private $repository;
/**

View File

@@ -52,9 +52,9 @@ class SplitController extends Controller
/** @var BudgetRepositoryInterface */
private $budgets;
/** @var CurrencyRepositoryInterface */
/** @var CurrencyRepositoryInterface The currency repository */
private $currencies;
/** @var JournalRepositoryInterface */
/** @var JournalRepositoryInterface Journals and transactions overview */
private $repository;
/**