]> git.mxchange.org Git - friendica.git/blobdiff - src/Object/Notification/Notification.php
Merge pull request #10586 from annando/app-user2
[friendica.git] / src / Object / Notification / Notification.php
index 925927d84722d8bae68f4fa11160ea66cc648311..164e7cc038953bc18c6dc8f1cd3d657a2cf4b0e7 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * 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
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Object\Notification;
 
@@ -94,18 +113,16 @@ class Notification implements \JsonSerializable
                return $this->seen;
        }
 
-       public function __construct(string $label = '', string $link = '', string $image = '',
-                                   string $url = '', string $text = '',
-                                   string $when = '', string $ago = '', bool $seen = false)
+       public function __construct(array $data)
        {
-               $this->label = $label;
-               $this->link  = $link;
-               $this->image = $image;
-               $this->url   = $url;
-               $this->text  = $text;
-               $this->when  = $when;
-               $this->ago   = $ago;
-               $this->seen  = $seen;
+               $this->label = $data['label'] ?? '';
+               $this->link  = $data['link'] ?? '';
+               $this->image = $data['image'] ?? '';
+               $this->url   = $data['url'] ?? '';
+               $this->text  = $data['text'] ?? '';
+               $this->when  = $data['when'] ?? '';
+               $this->ago   = $data['ago'] ?? '';
+               $this->seen  = $data['seen'] ?? false;
        }
 
        /**