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 | * Flysystem does not have an interface for PathPrefixer. |
| 4 | * |
| 5 | * @see League\Flysystem\PathPrefixer |
| 6 | */ |
| 7 | |
| 8 | namespace BrianHenryIE\Strauss\Helpers\Flysystem; |
| 9 | |
| 10 | interface PathPrefixerInterface |
| 11 | { |
| 12 | |
| 13 | public function prefixPath(string $path): string; |
| 14 | } |