]> git.mxchange.org Git - friendica.git/blobdiff - src/Repository/Notify.php
Merge pull request #8834 from MrPetovan/task/introduce-stable-branch
[friendica.git] / src / Repository / Notify.php
index b53bd844113f6e0001d1655917610b68527032f2..b72ccecf0a3f973605d5ce196d45187c65bdff35 100644 (file)
@@ -1,12 +1,31 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @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\Repository;
 
 use Exception;
 use Friendica\BaseRepository;
+use Friendica\Collection;
 use Friendica\Core\Hook;
 use Friendica\Model;
-use Friendica\Collection;
 use Friendica\Network\HTTPException\InternalServerErrorException;
 use Friendica\Network\HTTPException\NotFoundException;
 use Friendica\Util\DateTimeFormat;
@@ -42,14 +61,17 @@ class Notify extends BaseRepository
        }
 
        /**
-        * {@inheritDoc}
+        * Return one notify instance based on ID / UID
+        *
+        * @param int $id The ID of the notify instance
+        * @param int $uid The user ID, bound to this notify instance (= security check)
         *
         * @return Model\Notify
         * @throws NotFoundException
         */
-       public function getByID(int $id)
+       public function getByID(int $id, int $uid)
        {
-               return $this->selectFirst(['id' => $id, 'uid' => local_user()]);
+               return $this->selectFirst(['id' => $id, 'uid' => $uid]);
        }
 
        /**