Pheasant\Database\Mysqli\Table::truncate PHP Method

truncate() public method

Truncates the table
public truncate ( )
    public function truncate()
    {
        $this->_connection->execute(sprintf('TRUNCATE TABLE %s', $this->_name->quoted()));
        return $this;
    }