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