Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | namespace Apie\Core\FileStorage; |
3 | |
4 | interface ResourceAwareStorageInterface extends FileStorageInterface |
5 | { |
6 | /** |
7 | * @param resource $resource |
8 | */ |
9 | public function resourceToPath(mixed $resource): string; |
10 | |
11 | /** |
12 | * @return resource |
13 | */ |
14 | public function pathToResource(string $path): mixed; |
15 | } |