friendica/src/Collection/Notifies.php
Philipp Holzer 0840938dff
Rename classes
- Repository/Model Notification => Notify
- Factory/Object Notification => Notification
2020-01-26 20:30:24 +01:00

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