Deprecated get_uuid in favor of getUuid

This commit is contained in:
Benoît Burnichon
2015-07-13 18:08:04 +02:00
parent 38ae7bc2ac
commit 2107cd28df
5 changed files with 14 additions and 14 deletions

View File

@@ -127,8 +127,14 @@ class record_adapter implements RecordInterface, cache_cacheableInterface
/**
* @return string
* @deprecated use {@link getUuid} instead.
*/
public function get_uuid()
{
return $this->getUuid();
}
public function getUuid()
{
return $this->uuid;
}
@@ -1828,12 +1834,6 @@ class record_adapter implements RecordInterface, cache_cacheableInterface
return $this->get_type();
}
/** {@inheritdoc} */
public function getUuid()
{
return $this->get_uuid();
}
/** {@inheritdoc} */
public function getId()
{