2019-06-25 00:04:05 +00:00
|
|
|
<?php
|
2022-04-15 11:34:01 +00:00
|
|
|
|
2019-06-25 00:04:05 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
2024-09-08 13:46:22 +00:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-06-25 00:04:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Social\Interfaces\Actor;
|
|
|
|
|
|
|
|
use OCA\Social\Interfaces\IActivityPubInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ServiceInterface
|
|
|
|
*
|
|
|
|
* @package OCA\Social\Service\ActivityPub
|
|
|
|
*/
|
|
|
|
class ServiceInterface extends PersonInterface implements IActivityPubInterface {
|
|
|
|
}
|