Skip to content

Commit eb91e99

Browse files
Remove unnecessary methods. (#103)
Remove unnecessary methods.
1 parent 8474c40 commit eb91e99

1 file changed

Lines changed: 0 additions & 16 deletions

File tree

src/Schema.php

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -354,14 +354,6 @@ protected function getTableSequenceName(string $tableName): bool|float|int|strin
354354
return $sequenceName === false ? null : $sequenceName;
355355
}
356356

357-
/**
358-
* @inheritDoc
359-
*/
360-
public function getLastInsertID(string $sequenceName = null): string
361-
{
362-
return $this->db->getLastInsertID($sequenceName);
363-
}
364-
365357
/**
366358
* Creates ColumnSchema instance.
367359
*/
@@ -779,12 +771,4 @@ protected function normalizeRowKeyCase(array $row, bool $multiple): array
779771

780772
return array_change_key_case($row, CASE_LOWER);
781773
}
782-
783-
/**
784-
* @return bool whether this DBMS supports [savepoint](http://en.wikipedia.org/wiki/Savepoint).
785-
*/
786-
public function supportsSavepoint(): bool
787-
{
788-
return $this->db->isSavepointEnabled();
789-
}
790774
}

0 commit comments

Comments
 (0)