Skip to content

Commit

Permalink
Remove unnecessary methods. (#162)
Browse files Browse the repository at this point in the history
Remove unnecessary methods.
  • Loading branch information
terabytesoftw committed Nov 20, 2022
1 parent 56f94b6 commit 0612700
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/Schema.php
Expand Up @@ -1033,14 +1033,6 @@ protected function getCacheTag(): string
return md5(serialize(array_merge([self::class], $this->db->getCacheKey())));
}

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

/**
* Changes row's array key case to lower.
*
Expand All @@ -1057,12 +1049,4 @@ protected function normalizeRowKeyCase(array $row, bool $multiple): array

return array_change_key_case($row, CASE_LOWER);
}

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

0 comments on commit 0612700

Please sign in to comment.