refactor(php): Relocate and rename classes

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2024-05-11 10:16:34 +02:00
parent 814d1e0591
commit e7f6d155c8
8 changed files with 50 additions and 52 deletions

View File

@@ -51,7 +51,7 @@ use SP\Domain\Crypt\Services\TemporaryMasterPass;
use SP\Domain\Export\Services\BackupFileHelper;
use SP\Domain\Export\Services\XmlExport;
use SP\Domain\Log\Providers\LogInterface;
use SP\Domain\Notification\Providers\MailHandler;
use SP\Domain\Notification\Services\MailEvent;
use SP\Domain\Task\Services\Task;
use SP\Domain\User\Ports\UserGroupService;
use SP\Domain\User\Ports\UserProfileService;
@@ -376,7 +376,7 @@ final class IndexController extends ControllerBase
$mailEvents = $this->configData->getMailEvents();
$events = array_merge(MailHandler::EVENTS, $mailEvents);
$events = array_merge(MailEvent::EVENTS, $mailEvents);
sort($events, SORT_STRING);