Files
nextcloud-mail/lib/Db/Alias.php
Patrick Bender 36c031d667 Revive aliases feature
Signed-off-by: Patrick Bender <patrick@bender-it-services.de>

Fixed eslint errors and php-cs check errors

Signed-off-by: Patrick Bender <patrick@bender-it-services.de>

Second round of eslint and php-cs check fixes

Signed-off-by: Patrick Bender <patrick@bender-it-services.de>

Reverted translation changes and applied PR suggestions to Alias.php

Signed-off-by: Patrick Bender <patrick@bender-it-services.de>

Implemented design suggestions. Changed code to now use await/async

Signed-off-by: Patrick Bender <patrick@bender-it-services.de>

Changed aliases to not include a full copy of the account object

Signed-off-by: Patrick Bender <patrick@bender-it-services.de>
2020-07-15 08:04:41 +02:00

63 lines
1.5 KiB
PHP

<?php
declare(strict_types=1);
/**
* @author Jakob Sack <mail@jakobsack.de>
*
* Mail
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OCA\Mail\Db;
use JsonSerializable;
use OCP\AppFramework\Db\Entity;
/**
* @method void setAccountId(int $accountId)
* @method int getAccountId()
* @method void setName(string $name)
* @method string getName()
* @method void setAlias(string $alias)
* @method string getAlias()
*/
class Alias extends Entity implements JsonSerializable {
/** @var int */
protected $accountId;
/** @var string */
protected $name;
/** @var string */
protected $alias;
public function __construct() {
$this->addType('accountId', 'int');
$this->addType('name', 'string');
$this->addType('alias', 'string');
}
public function jsonSerialize(): array {
return [
'id' => $this->getId(),
'name' => $this->getName(),
'alias' => $this->getAlias()
];
}
}