diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-12-14 09:50:29 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-12-14 09:50:29 +0100 |
commit | 3e078ffa1bd22f885a2c3c4c1173fea16d5156d8 (patch) | |
tree | 44edb095410940f1f8d1ea6fb496904d9f2fad37 /lib/public | |
parent | d42ad702691bd6f8c2df14ccacadf57e23a1bfb5 (diff) | |
download | nextcloud-server-3e078ffa1bd22f885a2c3c4c1173fea16d5156d8.tar.gz nextcloud-server-3e078ffa1bd22f885a2c3c4c1173fea16d5156d8.zip |
Deprecate entity slugs
They are only used a single time in the whole Nextcloud Github
organization. We can inline the code there and slim down the public API.
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/AppFramework/Db/Entity.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/public/AppFramework/Db/Entity.php b/lib/public/AppFramework/Db/Entity.php index b7ddc6dc5f7..89e8f69859e 100644 --- a/lib/public/AppFramework/Db/Entity.php +++ b/lib/public/AppFramework/Db/Entity.php @@ -260,6 +260,7 @@ abstract class Entity { * @param string $attributeName the name of the attribute, which value should be slugified * @return string slugified value * @since 7.0.0 + * @deprecated 24.0.0 */ public function slugify($attributeName) { // toSlug should only work for existing attributes |