PathNormalizer.php 148 B

12345678910
  1. <?php
  2. declare(strict_types=1);
  3. namespace League\Flysystem;
  4. interface PathNormalizer
  5. {
  6. public function normalizePath(string $path): string;
  7. }