Select Git revision
-
Reiter, Christoph authored
We want to have multiple session implementations, so this will be implemented by the auth/oidc bundle, and the core bundle will contain a proxy which will just forward to the active one.
Reiter, Christoph authoredWe want to have multiple session implementations, so this will be implemented by the auth/oidc bundle, and the core bundle will contain a proxy which will just forward to the active one.
DatasystemProviderServiceInterface.php 491 B
<?php
declare(strict_types=1);
namespace Dbp\Relay\BlobBundle\Service;
use Dbp\Relay\BlobBundle\Entity\FileData;
use Dbp\Relay\BlobBundle\Helper\PoliciesStruct;
interface DatasystemProviderServiceInterface
{
public function saveFile(FileData $fileData): ?FileData;
public function renameFile(FileData $fileData): ?FileData;
public function getLink(FileData $fileData, PoliciesStruct $policiesStruct): ?FileData;
public function removeFile(FileData $fileData): bool;
}