. */ namespace SP\Modules\Web\Controllers\AccountFile; use SP\Core\Application; use SP\Domain\Account\Ports\AccountFileService; use SP\Modules\Web\Controllers\ControllerBase; use SP\Mvc\Controller\WebControllerHelper; abstract class AccountFileBase extends ControllerBase { protected AccountFileService $accountFileService; public function __construct( Application $application, WebControllerHelper $webControllerHelper, AccountFileService $accountFileService ) { parent::__construct($application, $webControllerHelper); $this->checkLoggedIn(); $this->accountFileService = $accountFileService; } }