| Server IP : 172.67.191.97 / Your IP : 104.23.197.208 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/phpmyadmin/libraries/classes/Dbal/ |
Upload File : |
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Dbal;
use Stringable;
use Webmozart\Assert\Assert;
use Webmozart\Assert\InvalidArgumentException;
/**
* @psalm-immutable
*/
final class TableName implements Stringable
{
/**
* @see https://dev.mysql.com/doc/refman/en/identifier-length.html
* @see https://mariadb.com/kb/en/identifier-names/#maximum-length
*/
private const MAX_LENGTH = 64;
/**
* @var string
* @psalm-var non-empty-string
*/
private $name;
/**
* @param mixed $name
*
* @throws InvalidArgumentException
*/
private function __construct($name)
{
Assert::stringNotEmpty($name);
Assert::maxLength($name, self::MAX_LENGTH);
Assert::notEndsWith($name, ' ');
$this->name = $name;
}
/**
* @param mixed $name
*
* @throws InvalidArgumentException
*/
public static function fromValue($name): self
{
return new self($name);
}
/**
* @psalm-return non-empty-string
*/
public function getName(): string
{
return $this->name;
}
/**
* @psalm-return non-empty-string
*/
public function __toString(): string
{
return $this->name;
}
}