2019-01-18 16:51:43 +00:00
|
|
|
<?php
|
2022-04-15 11:34:01 +00:00
|
|
|
|
2019-01-18 16:51:43 +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-01-18 16:51:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Social\Interfaces\Object;
|
|
|
|
|
|
|
|
use OCA\Social\Db\CacheDocumentsRequest;
|
|
|
|
use OCA\Social\Interfaces\IActivityPubInterface;
|
2023-03-14 17:03:42 +00:00
|
|
|
use OCA\Social\Service\CacheDocumentService;
|
2019-01-18 16:51:43 +00:00
|
|
|
use OCA\Social\Service\MiscService;
|
|
|
|
|
|
|
|
class ImageInterface extends DocumentInterface implements IActivityPubInterface {
|
|
|
|
/**
|
|
|
|
* DocumentInterface constructor.
|
|
|
|
*
|
|
|
|
* @param CacheDocumentsRequest $cacheDocumentsRequest
|
|
|
|
* @param MiscService $miscService
|
|
|
|
*/
|
|
|
|
public function __construct(
|
2023-03-14 17:03:42 +00:00
|
|
|
CacheDocumentsRequest $cacheDocumentsRequest,
|
2024-10-28 12:53:06 +00:00
|
|
|
CacheDocumentService $cacheDocumentService,
|
2019-01-18 16:51:43 +00:00
|
|
|
) {
|
2023-03-14 17:03:42 +00:00
|
|
|
parent::__construct($cacheDocumentService, $cacheDocumentsRequest);
|
2019-01-18 16:51:43 +00:00
|
|
|
}
|
|
|
|
}
|