Merge pull request #50367 from nextcloud/backport/50362/stable31

[stable31] fix: remove return type
This commit is contained in:
Arthur Schiwon 2025-01-23 21:14:31 +01:00 committed by GitHub
commit 91b180dd1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 = '';