mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-09-26 20:59:56 +08:00
13 lines
320 B
PHP
13 lines
320 B
PHP
<?php
|
|
|
|
|
|
namespace League\Flysystem\Adapter;
|
|
|
|
/**
|
|
* Adapters that implement this interface let the Filesystem know that 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
|
|
{
|
|
}
|