17 lines
269 B
PHP
17 lines
269 B
PHP
<?php
|
|
|
|
namespace Friendica\Collection\Api\Mastodon;
|
|
|
|
use Friendica\BaseCollection;
|
|
use Friendica\Object\Api\Mastodon\Mention;
|
|
|
|
class Mentions extends BaseCollection
|
|
{
|
|
/**
|
|
* @return Mention
|
|
*/
|
|
public function current(): Mention
|
|
{
|
|
return parent::current();
|
|
}
|
|
}
|