Вход Регистрация
Файл: vendor/league/flysystem/src/UnableToGenerateTemporaryUrl.php
Строк: 45
<?php

declare(strict_types=1);

namespace 
LeagueFlysystem;

use 
RuntimeException;
use 
Throwable;

final class 
UnableToGenerateTemporaryUrl extends RuntimeException implements FilesystemException
{
    public function 
__construct(string $reasonstring $path, ?Throwable $previous null)
    {
        
parent::__construct("Unable to generate temporary url for $path$reason"0$previous);
    }

    public static function 
dueToError(string $pathThrowable $exception): static
    {
        return new static(
$exception->getMessage(), $path$exception);
    }

    public static function 
noGeneratorConfigured(string $pathstring $extraReason ''): static
    {
        return new static(
'No generator was configured ' $extraReason$path);
    }
}
Онлайн: 1
Реклама