aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnna Larch <anna@nextcloud.com>2025-01-23 17:37:27 +0100
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2025-01-23 19:28:30 +0000
commit3a9713de2cc8d6acadc1ff425d39c202dbedd614 (patch)
tree9027820a9af4efec6ed4241ea7a03f127a32cb80
parent3c9f86a3b7214eae85dc4144cf8b505cd236563f (diff)
downloadnextcloud-server-backport/50362/stable31.tar.gz
nextcloud-server-backport/50362/stable31.zip
fix: remove typing and return typebackport/50362/stable31
Signed-off-by: Anna Larch <anna@nextcloud.com>
-rw-r--r--lib/public/AppFramework/Db/Entity.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/AppFramework/Db/Entity.php b/lib/public/AppFramework/Db/Entity.php
index d90d3ed4837..a44a9a8bced 100644
--- a/lib/public/AppFramework/Db/Entity.php
+++ b/lib/public/AppFramework/Db/Entity.php
@@ -215,7 +215,7 @@ abstract class Entity {
* @return string the property name
* @since 7.0.0
*/
- public function columnToProperty(string $columnName): string {
+ public function columnToProperty(string $columnName) {
$parts = explode('_', $columnName);
$property = '';