mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-13 01:35:47 +00:00
19 lines
328 B
PHP
19 lines
328 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 ActivityPub\Objects;
|
|
|
|
use ActivityPub\Core\ObjectType;
|
|
|
|
class TombstoneObject extends ObjectType
|
|
{
|
|
protected string $type = 'Tombstone';
|
|
}
|