mirror of
https://github.com/friendica/friendica
synced 2025-04-13 07:59:03 +00:00
17 lines
230 B
PHP
17 lines
230 B
PHP
<?php
|
|
|
|
namespace Friendica\Collection;
|
|
|
|
use Friendica\BaseCollection;
|
|
use Friendica\Model;
|
|
|
|
class Notifies extends BaseCollection
|
|
{
|
|
/**
|
|
* @return Model\Notify
|
|
*/
|
|
public function current()
|
|
{
|
|
return parent::current();
|
|
}
|
|
}
|