kopia lustrzana https://github.com/nextcloud/social
31 wiersze
802 B
PHP
31 wiersze
802 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Social\Interfaces\Object;
|
|
|
|
use OCA\Social\Db\CacheDocumentsRequest;
|
|
use OCA\Social\Interfaces\IActivityPubInterface;
|
|
use OCA\Social\Service\CacheDocumentService;
|
|
use OCA\Social\Service\MiscService;
|
|
|
|
class ImageInterface extends DocumentInterface implements IActivityPubInterface {
|
|
/**
|
|
* DocumentInterface constructor.
|
|
*
|
|
* @param CacheDocumentsRequest $cacheDocumentsRequest
|
|
* @param MiscService $miscService
|
|
*/
|
|
public function __construct(
|
|
CacheDocumentsRequest $cacheDocumentsRequest,
|
|
CacheDocumentService $cacheDocumentService,
|
|
) {
|
|
parent::__construct($cacheDocumentService, $cacheDocumentsRequest);
|
|
}
|
|
}
|