Welcome to mirror list, hosted at ThFree Co, Russian Federation.

InvalidIdentifierName.php « Dbal « classes « libraries - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b5a683476da792cc94ad668e3238288b0fa95cf (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

declare(strict_types=1);

namespace PhpMyAdmin\Dbal;

use InvalidArgumentException;

class InvalidIdentifierName extends InvalidArgumentException
{
}