ManaPHP\Db\Adapter\Mysql::truncateTable PHP Method

truncateTable() public method

public truncateTable ( string $source ) : static
$source string
return static
    public function truncateTable($source)
    {
        $this->execute('TRUNCATE TABLE ' . $this->escapeIdentifier($source));
        return $this;
    }