File manager - Edit - /var/www/html/gop/api/vendor/doctrine/dbal/src/Schema/Collections/Exception/ObjectDoesNotExist.php
Back
<?php declare(strict_types=1); namespace Doctrine\DBAL\Schema\Collections\Exception; use Doctrine\DBAL\Schema\Collections\Exception; use Doctrine\DBAL\Schema\Name\UnqualifiedName; use LogicException; use function sprintf; /** @internal */ final class ObjectDoesNotExist extends LogicException implements Exception { public function __construct(string $message, private readonly UnqualifiedName $objectName) { parent::__construct($message); } public function getObjectName(): UnqualifiedName { return $this->objectName; } public static function new(UnqualifiedName $objectName): self { return new self(sprintf('Object %s does not exist.', $objectName->toString()), $objectName); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.28 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings