File manager - Edit - /var/www/html/gop/api/vendor/doctrine/dbal/src/Schema/Name/UnqualifiedName.php
Back
<?php declare(strict_types=1); namespace Doctrine\DBAL\Schema\Name; use Doctrine\DBAL\Platforms\AbstractPlatform; use Doctrine\DBAL\Schema\Name; /** * An unqualified {@see Name} consisting of a single identifier. */ final readonly class UnqualifiedName implements Name { public function __construct(private Identifier $identifier) { } public function getIdentifier(): Identifier { return $this->identifier; } public function toSQL(AbstractPlatform $platform): string { return $this->identifier->toSQL($platform); } public function toString(): string { return $this->identifier->toString(); } /** * Creates a quoted unqualified name. * * @param non-empty-string $value */ public static function quoted(string $value): self { return new self(Identifier::quoted($value)); } /** * Creates an unquoted unqualified name. * * @param non-empty-string $value */ public static function unquoted(string $value): self { return new self(Identifier::unquoted($value)); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.28 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings