Improve code quality.

This commit is contained in:
James Cole
2018-07-22 15:08:56 +02:00
parent d4ba014a8a
commit a941519db5
41 changed files with 210 additions and 52 deletions

View File

@@ -36,9 +36,9 @@ use Log;
*/
class FakeRoutine implements RoutineInterface
{
/** @var ImportJob */
/** @var ImportJob The import job */
private $importJob;
/** @var ImportJobRepositoryInterface */
/** @var ImportJobRepositoryInterface Import job repository */
private $repository;
/**
@@ -51,6 +51,9 @@ class FakeRoutine implements RoutineInterface
*
* @return void
* @throws FireflyException
*
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
*/
public function run(): void
{
@@ -93,6 +96,8 @@ class FakeRoutine implements RoutineInterface
}
/**
* Set the import job.
*
* @param ImportJob $importJob
*
*/