mirror of
https://github.com/friendica/friendica
synced 2025-02-22 01:26:47 +00:00
- Remove "mapFields()" from BaseModel - Add new Notification API entity (including collection) - Add new NotificationFactory method "getApiList()"
17 lines
267 B
PHP
17 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();
|
|
}
|
|
}
|