]> git.mxchange.org Git - friendica.git/blob - src/Contact/FriendSuggest/Entity/FriendSuggest.php
Add previous exception to unexpected worker exception logging
[friendica.git] / src / Contact / FriendSuggest / Entity / FriendSuggest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\Contact\FriendSuggest\Entity;
23
24 use Friendica\BaseEntity;
25
26 /**
27  * Model for interacting with a friend suggestion
28  *
29  * @property-read int $uid
30  * @property-read int $cid
31  * @property-read string $name
32  * @property-read string $url
33  * @property-read string $request
34  * @property-read string $photo
35  * @property-read string $note
36  * @property-read \DateTime created
37  * @property-read int|null $id
38  */
39 class FriendSuggest extends BaseEntity
40 {
41         /** @var int */
42         protected $uid;
43         /** @var int */
44         protected $cid;
45         /** @var string */
46         protected $name;
47         /** @var string */
48         protected $url;
49         /** @var string */
50         protected $request;
51         /** @var string */
52         protected $photo;
53         /** @var string */
54         protected $note;
55         /** @var \DateTime */
56         protected $created;
57         /** @var int|null */
58         protected $id;
59
60         /**
61          * @param int       $uid
62          * @param int       $cid
63          * @param string    $name
64          * @param string    $url
65          * @param string    $request
66          * @param string    $photo
67          * @param string    $note
68          * @param \DateTime $created
69          * @param int|null  $id
70          */
71         public function __construct(int $uid, int $cid, string $name, string $url, string $request, string $photo, string $note, \DateTime $created, ?int $id = null)
72         {
73                 $this->uid     = $uid;
74                 $this->cid     = $cid;
75                 $this->name    = $name;
76                 $this->url     = $url;
77                 $this->request = $request;
78                 $this->photo   = $photo;
79                 $this->note    = $note;
80                 $this->created = $created;
81                 $this->id      = $id;
82         }
83 }