Visualphpunit\Core\Suite::dropTable PHP Method

dropTable() public static method

Drop the table if it exists
public static dropTable ( Doctrine\DBAL\Connection $connection ) : boolean
$connection Doctrine\DBAL\Connection
return boolean
    public static function dropTable(Connection $connection)
    {
        $sql = "DROP suites;";
        $stmt = $connection->prepare($sql);
        return $stmt->execute();
    }