]> git.mxchange.org Git - friendica.git/blob - src/Content/Entity/Conversation/Channel.php
Constants moved to model class
[friendica.git] / src / Content / Entity / Conversation / Channel.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Content\Entity\Conversation;
23
24 /**
25  * @property-read string $code        Channel code
26  * @property-read string $label       Channel label
27  * @property-read string $description Channel description
28  * @property-read string $accessKey   Access key
29  */
30 final class Channel extends \Friendica\BaseEntity
31 {
32         /** @var string */
33         protected $code;
34         /** @var string */
35         protected $label;
36         /** @var string */
37         protected $description;
38         /** @var string */
39         protected $accessKey;
40
41         public function __construct(string $code, string $label, string $description, string $accessKey)
42         {
43                 $this->code        = $code;
44                 $this->label       = $label;
45                 $this->description = $description;
46                 $this->accessKey   = $accessKey;
47         }
48 }