]> git.mxchange.org Git - friendica.git/blob - src/Collection/Notifies.php
Merge pull request #8227 from annando/daemon-checks
[friendica.git] / src / Collection / Notifies.php
1 <?php
2
3 namespace Friendica\Collection;
4
5 use Friendica\BaseCollection;
6 use Friendica\Model;
7
8 class Notifies extends BaseCollection
9 {
10         /**
11          * @return Model\Notify
12          */
13         public function current()
14         {
15                 return parent::current();
16         }
17 }