diff --git a/lib/classes/record/adapter.php b/lib/classes/record/adapter.php index 332be2274b..78cd053c39 100644 --- a/lib/classes/record/adapter.php +++ b/lib/classes/record/adapter.php @@ -248,8 +248,14 @@ class record_adapter implements RecordInterface, cache_cacheableInterface * Return base_id of the record * * @return int + * @deprecated use {@link self::getBaseId} instead. */ public function get_base_id() + { + return $this->getBaseId(); + } + + public function getBaseId() { return $this->base_id; } @@ -1780,12 +1786,6 @@ class record_adapter implements RecordInterface, cache_cacheableInterface return $this; } - /** {@inheritdoc} */ - public function getBaseId() - { - return $this->get_base_id(); - } - /** {@inheritdoc} */ public function getCollectionId() {