![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/InstallBundle/Configurator/Step/ |
<?php namespace Mautic\InstallBundle\Configurator\Step; use Mautic\CoreBundle\Configurator\Step\StepInterface; use Mautic\InstallBundle\Configurator\Form\UserStepType; class UserStep implements StepInterface { /** * User's first name. */ public $firstname; /** * User's last name. */ public $lastname; /** * User's e-mail address. */ public $email; /** * User's username. */ public $username; /** * User's password. */ public $password; public function getFormType(): string { return UserStepType::class; } public function checkRequirements(): array { return []; } public function checkOptionalSettings(): array { return []; } public function getTemplate(): string { return '@MauticInstall/Install/user.html.twig'; } public function update(StepInterface $data): array { return []; } }