PHP Classes

File: src/Exception/InvalidTableName.php

Recommend this page to a friend!
  Packages of Scott Arciszewski   EasyDB   src/Exception/InvalidTableName.php   Download  
File: src/Exception/InvalidTableName.php
Role: Class source
Content type: text/plain
Description: Class source
Class: EasyDB
Simple Database Abstraction Layer around PDO
Author: By
Last change: Test Improvements + Mutation Testing (#168)

* Update testing frameworks
* Add infection for mutation tests
* Modernize PHPUnit usage
Date: 1 month ago
Size: 297 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);

namespace
ParagonIE\EasyDB\Exception;

use
ParagonIE\Corner\CornerInterface;
use
ParagonIE\Corner\CornerTrait;

/**
 * Class InvalidTableName
 * @package ParagonIE\EasyDB\Exception
 * @api
 */
class InvalidTableName extends EasyDBException
{
    use
CornerTrait;
}