CanOverwriteFiles.php 320 B

123456789101112
  1. <?php
  2. namespace League\Flysystem\Adapter;
  3. /**
  4. * Adapters that implement this interface let the Filesystem know that files can be overwritten using the write
  5. * functions and don't need the update function to be called. This can help improve performance when asserts are disabled.
  6. */
  7. interface CanOverwriteFiles
  8. {
  9. }