Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: remove typing and return type
Signed-off-by: Anna Larch <[email protected]>
  • Loading branch information
miaulalala authored and backportbot[bot] committed Jan 23, 2025
commit 3a9713de2cc8d6acadc1ff425d39c202dbedd614
2 changes: 1 addition & 1 deletion lib/public/AppFramework/Db/Entity.php
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ protected function markFieldUpdated(string $attribute): void {
* @return string the property name
* @since 7.0.0
*/
public function columnToProperty(string $columnName): string {
public function columnToProperty(string $columnName) {
$parts = explode('_', $columnName);
$property = '';

Expand Down
Loading