mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-08 19:04:27 +02: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();
|
|
}
|
|
}
|