mirror of
https://github.com/friendica/friendica
synced 2025-01-27 20:19:46 +00:00
18 lines
267 B
PHP
18 lines
267 B
PHP
|
<?php
|
||
|
|
||
|
namespace Friendica\Collection\Api;
|
||
|
|
||
|
use Friendica\BaseCollection;
|
||
|
use Friendica\Object\Api\Friendica\Notification;
|
||
|
|
||
|
class Notifications extends BaseCollection
|
||
|
{
|
||
|
/**
|
||
|
* @return Notification
|
||
|
*/
|
||
|
public function current()
|
||
|
{
|
||
|
return parent::current();
|
||
|
}
|
||
|
}
|