| 1 | <?php |
||
| 7 | class InvalidColumnName extends InvalidQuery |
||
| 8 | { |
||
| 9 | /** @var string */ |
||
| 10 | public $column; |
||
| 11 | |||
| 12 | public function __construct(string $column, string $message) |
||
| 18 | |||
| 19 | public static function columnNameTooLong(string $column, int $maxLength = 64) |
||
| 23 | |||
| 24 | public static function invalidCharacters(string $column) |
||
| 28 | } |
||
| 29 |