Skip to content

Commit

Permalink
Remove unnecessary methods. (#134)
Browse files Browse the repository at this point in the history
* Remove unnecessary methods.
  • Loading branch information
terabytesoftw committed Nov 20, 2022
1 parent 282fa15 commit c950b53
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/Schema.php
Expand Up @@ -675,20 +675,4 @@ protected function normalizeRowKeyCase(array $row, bool $multiple): array

return array_change_key_case($row, CASE_LOWER);
}

/**
* @return bool whether this DBMS supports [savepoint](http://en.wikipedia.org/wiki/Savepoint).
*/
public function supportsSavepoint(): bool
{
return $this->db->isSavepointEnabled();
}

/**
* @inheritDoc
*/
public function getLastInsertID(?string $sequenceName = null): string
{
return $this->db->getLastInsertID($sequenceName);
}
}

0 comments on commit c950b53

Please sign in to comment.