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();
|
||
|
}
|
||
|
}
|