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 | /** |
| 3 | * |
| 4 | * Flysystem 3.x requires PHP 8. |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | namespace BrianHenryIE\Strauss\Helpers\Flysystem; |
| 9 | |
| 10 | /** |
| 11 | * @see \League\Flysystem\FilesystemReader |
| 12 | * @see \League\Flysystem\FilesystemOperator |
| 13 | * @see \League\Flysystem\Filesystem |
| 14 | */ |
| 15 | interface FlysystemReaderBackCompatTraitInterface extends FlysystemAdapterBackCompatTraitInterface |
| 16 | { |
| 17 | public function directoryExists(string $location): bool; |
| 18 | public function has(string $location): bool; |
| 19 | } |