Select Git revision
-
Reiter, Christoph authored
Takes a package name and a dest path. This way we can more eassily change the layout and it will error out on package name typos or missing packages.
Reiter, Christoph authoredTakes a package name and a dest path. This way we can more eassily change the layout and it will error out on package name typos or missing packages.
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;
}