Просмотр файла vendor/spatie/temporary-directory/src/Exceptions/PathAlreadyExists.php

Размер файла: 232B
<?php

namespace Spatie\TemporaryDirectory\Exceptions;

class PathAlreadyExists extends \Exception
{
    public static function create(string $path): static
    {
        return new static("Path `{$path}` already exists.");
    }
}