- Adds the PhpMyAdmin\Dbal\InvalidIdentifierName exception - Adds the PhpMyAdmin\Dbal\InvalidDatabaseName exception - Adds the PhpMyAdmin\Dbal\InvalidTableName exception Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
12 lines
157 B
PHP
12 lines
157 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Dbal;
|
|
|
|
use InvalidArgumentException;
|
|
|
|
class InvalidIdentifierName extends InvalidArgumentException
|
|
{
|
|
}
|