test(IT): Test account edit pass

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2024-08-04 12:05:52 +02:00
parent ad5135add2
commit e7782c50e1
25 changed files with 345 additions and 295 deletions

View File

@@ -39,16 +39,16 @@ use SP\Mvc\View\TemplateInterface;
*/
abstract class HelperBase
{
protected TemplateInterface $view;
protected ConfigDataInterface $configData;
protected Context $context;
protected EventDispatcherInterface $eventDispatcher;
protected ConfigFileService $config;
protected readonly TemplateInterface $view;
protected readonly ConfigDataInterface $configData;
protected readonly Context $context;
protected readonly EventDispatcherInterface $eventDispatcher;
protected readonly ConfigFileService $config;
public function __construct(
Application $application,
TemplateInterface $template,
protected RequestService $request
Application $application,
TemplateInterface $template,
protected readonly RequestService $request
) {
$this->config = $application->getConfig();
$this->context = $application->getContext();