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