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