-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAdapterCollectionInterface.php
59 lines (52 loc) · 1.39 KB
/
AdapterCollectionInterface.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
<?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 IteratorAggregate;
use League\Flysystem\FilesystemAdapter;
/**
* Factory Collection Interface
*/
interface AdapterCollectionInterface extends IteratorAggregate
{
/**
* @param string $name Name
* @param \League\Flysystem\FilesystemAdapter $adapter Adapter
*
* @return void
*/
public function add($name, FilesystemAdapter $adapter);
/**
* @param string $name Name
*
* @return void
*/
public function remove(string $name): void;
/**
* @param string $name Name
*
* @return bool
*/
public function has(string $name): bool;
/**
* @param string $name
*
* @return \League\Flysystem\FilesystemAdapter
*/
public function get(string $name): FilesystemAdapter;
/**
* Empties the collection
*
* @return void
*/
public function empty(): void;
}