You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
774 B
22 lines
774 B
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace League\Flysystem;
|
|
|
|
interface FilesystemOperationFailed extends FilesystemException
|
|
{
|
|
public const OPERATION_WRITE = 'WRITE';
|
|
public const OPERATION_UPDATE = 'UPDATE';
|
|
public const OPERATION_FILE_EXISTS = 'FILE_EXISTS';
|
|
public const OPERATION_CREATE_DIRECTORY = 'CREATE_DIRECTORY';
|
|
public const OPERATION_DELETE = 'DELETE';
|
|
public const OPERATION_DELETE_DIRECTORY = 'DELETE_DIRECTORY';
|
|
public const OPERATION_MOVE = 'MOVE';
|
|
public const OPERATION_RETRIEVE_METADATA = 'RETRIEVE_METADATA';
|
|
public const OPERATION_COPY = 'COPY';
|
|
public const OPERATION_READ = 'READ';
|
|
public const OPERATION_SET_VISIBILITY = 'SET_VISIBILITY';
|
|
|
|
public function operation(): string;
|
|
}
|
|
|