mirror of
https://github.com/friendica/friendica
synced 2025-04-22 05:50:13 +00:00
23 lines
452 B
PHP
23 lines
452 B
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Collection\Api;
|
|
|
|
use Friendica\BaseCollection;
|
|
use Friendica\Object\Api\Friendica\Notification;
|
|
|
|
class Notifications extends BaseCollection
|
|
{
|
|
/**
|
|
* @return Notification
|
|
*/
|
|
#[\ReturnTypeWillChange]
|
|
public function current()
|
|
{
|
|
return parent::current();
|
|
}
|
|
}
|