Files
nextcloud-mail/lib/Events/BeforeImapClientCreated.php
Daniel Kesselberg 94ac6cf8c6 style: apply coding-standard 1.2.3
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2024-08-26 11:50:26 +02:00

31 lines
539 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Mail\Events;
use OCA\Mail\Account;
use OCP\EventDispatcher\Event;
class BeforeImapClientCreated extends Event {
/** @var Account */
private $account;
public function __construct(Account $account) {
parent::__construct();
$this->account = $account;
}
/**
* @return Account
*/
public function getAccount(): Account {
return $this->account;
}
}