59 lines
1.2 KiB
PHP
59 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\DBAL\Schema;
|
|
|
|
use Doctrine\DBAL\Schema\Exception\InvalidName;
|
|
use Doctrine\DBAL\Schema\Exception\InvalidState;
|
|
|
|
/**
|
|
* An abstract {@see NamedObject}.
|
|
*
|
|
* @template N of Name
|
|
* @extends AbstractAsset<N>
|
|
* @implements NamedObject<N>
|
|
*/
|
|
abstract class AbstractNamedObject extends AbstractAsset implements NamedObject
|
|
{
|
|
/**
|
|
* The name of the database object.
|
|
*
|
|
* Until the validity of the name is enforced, this property isn't guaranteed to be always initialized. The property
|
|
* can be accessed only if {@see $isNameInitialized} is set to true.
|
|
*
|
|
* @var N
|
|
*/
|
|
protected Name $name;
|
|
|
|
public function __construct(string $name)
|
|
{
|
|
parent::__construct($name);
|
|
}
|
|
|
|
/**
|
|
* Returns the object name.
|
|
*
|
|
* @return N
|
|
*
|
|
* @throws InvalidState
|
|
*/
|
|
public function getObjectName(): Name
|
|
{
|
|
if (! $this->isNameInitialized) {
|
|
throw InvalidState::objectNameNotInitialized();
|
|
}
|
|
|
|
return $this->name;
|
|
}
|
|
|
|
protected function setName(?Name $name): void
|
|
{
|
|
if ($name === null) {
|
|
throw InvalidName::fromEmpty();
|
|
}
|
|
|
|
$this->name = $name;
|
|
}
|
|
}
|