mirror of
https://github.com/nextcloud/server.git
synced 2026-05-25 10:49:21 -04:00
Merge pull request #50367 from nextcloud/backport/50362/stable31
[stable31] fix: remove return type
This commit is contained in:
commit
91b180dd1b
1 changed files with 1 additions and 1 deletions
|
|
@ -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 = '';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue