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