castopod/app/Libraries/ActivityPub/Objects/TombstoneObject.php

17 lines
302 B
PHP

<?php
/**
* @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';
}