mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 23:36:44 +02:00
- create Admin, Analytics, Auth, Fediverse and Install modules in the root modules/ folder - rename ActivityPub to Fediverse
18 lines
340 B
PHP
18 lines
340 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2021 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
namespace Modules\Fediverse\Objects;
|
|
|
|
use Modules\Fediverse\Core\ObjectType;
|
|
|
|
class TombstoneObject extends ObjectType
|
|
{
|
|
protected string $type = 'Tombstone';
|
|
}
|