Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

fix: Transport manager journey broken due to type. #110

Merged
merged 3 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

trait TransportManagerApplicationTrait
{
protected TransportManagerApplication $tma;
protected array $tma;

/**
* @return void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@ abstract class AbstractDeclarationController extends AbstractController
protected AnnotationBuilder $transferAnnotationBuilder;
protected CommandService $commandService;

/**
* @var TransportManagerApplication
*/
protected TransportManagerApplication $tma;

/**
* @param NiTextTranslation $niTextTranslationUtil
* @param AuthorizationService $authService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ class CheckAnswersController extends AbstractController
use ExternalControllerTrait;
use TransportManagerApplicationTrait;

protected $tma;

protected FormHelperService $formHelper;
protected TranslationHelperService $translationHelper;
protected AnnotationBuilder $transferAnnotationBuilder;
Expand Down
Loading