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 committed Jan 23, 2025
commit 1562db80b1fd55eb8de756645c40760826a60336
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