Вход Регистрация
Файл: vendor/doctrine/dbal/src/Schema/Exception/UniqueConstraintDoesNotExist.php
Строк: 33
<?php

declare(strict_types=1);

namespace 
DoctrineDBALSchemaException;

use 
DoctrineDBALSchemaSchemaException;

use function 
sprintf;

final class 
UniqueConstraintDoesNotExist extends SchemaException
{
    public static function new(
string $constraintNamestring $table): self
    
{
        return new 
self(
            
sprintf('There exists no unique constraint with the name "%s" on table "%s".'$constraintName$table),
            
self::CONSTRAINT_DOESNT_EXIST,
        );
    }
}
Онлайн: 0
Реклама