Files
kulakpos_web/vendor/league/flysystem/src/ResolveIdenticalPathConflict.php

12 lines
198 B
PHP
Raw Normal View History

2026-03-30 14:54:57 +07:00
<?php
declare(strict_types=1);
namespace League\Flysystem;
class ResolveIdenticalPathConflict
{
public const IGNORE = 'ignore';
public const FAIL = 'fail';
public const TRY = 'try';
}