]> git.mxchange.org Git - friendica.git/blob - src/Collection/Api/Notifications.php
Merge pull request #8211 from nupplaphil/task/mod_crepair
[friendica.git] / src / Collection / Api / Notifications.php
1 <?php
2
3 namespace Friendica\Collection\Api;
4
5 use Friendica\BaseCollection;
6 use Friendica\Object\Api\Friendica\Notification;
7
8 class Notifications extends BaseCollection
9 {
10         /**
11          * @return Notification
12          */
13         public function current()
14         {
15                 return parent::current();
16         }
17 }