Pheasant\Database\Mysqli\Table::__construct PHP 메소드

__construct() 공개 메소드

Constructor
public __construct ( $name, $connection )
$name TableName
    public function __construct($name, $connection)
    {
        $this->_name = $name instanceof TableName ? $name : new TableName($name);
        $this->_connection = $connection;
    }