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 | * These methods were added in FlySystem x (TODO) |
| 4 | */ |
| 5 | |
| 6 | namespace BrianHenryIE\Strauss\Helpers; |
| 7 | |
| 8 | use League\Flysystem\FilesystemOperator; |
| 9 | |
| 10 | interface FlysystemBackCompatInterface extends FilesystemOperator |
| 11 | { |
| 12 | public function directoryExists(string $location): bool; |
| 13 | public function has(string $location): bool; |
| 14 | } |