-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFileStorageInterface.php
61 lines (54 loc) · 1.91 KB
/
FileStorageInterface.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php declare(strict_types=1);
/**
* Copyright (c) Florian Krämer (https://florian-kraemer.net)
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Florian Krämer (https://florian-kraemer.net)
* @author Florian Krämer
* @link https://github.com/Phauthentic
* @license https://opensource.org/licenses/MIT MIT License
*/
namespace PhpCollective\Infrastructure\Storage;
use League\Flysystem\Config;
use League\Flysystem\FilesystemAdapter;
/**
* FileStorageInterface
*/
interface FileStorageInterface
{
/**
* Stores the file in the storage backend and provides the file entity
* with a path after the file was stored.
*
* @param \PhpCollective\Infrastructure\Storage\FileInterface $file File
* @param \League\Flysystem\Config|null $config Flysystem Config when storing a file
*
* @return \PhpCollective\Infrastructure\Storage\FileInterface
*/
public function store(FileInterface $file, ?Config $config = null): FileInterface;
/**
* Removes a file from the storage backend
*
* @param \PhpCollective\Infrastructure\Storage\FileInterface $file File
*
* @return \PhpCollective\Infrastructure\Storage\FileInterface
*/
public function remove(FileInterface $file): FileInterface;
/**
* @param \PhpCollective\Infrastructure\Storage\FileInterface $file File
* @param string $name Name
*
* @return \PhpCollective\Infrastructure\Storage\FileInterface
*/
public function removeVariant(FileInterface $file, string $name): FileInterface;
/**
* Gets the storage abstraction to use
*
* @param string $storage Storage name to use
*
* @return \League\Flysystem\FilesystemAdapter
*/
public function getStorage(string $storage): FilesystemAdapter;
}