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
5 changes: 3 additions & 2 deletions lib/public/AppFramework/Db/Entity.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
abstract class Entity {
/** @var int $id */
public $id;
/** @var array<string, true> $_updatedFields */
private array $_updatedFields = [];
/** @psalm-param $_fieldTypes array<string, Types::*> */
/** @var array<string, Types::*> $_fieldTypes */
protected array $_fieldTypes = ['id' => 'integer'];

/**
Expand Down Expand Up @@ -251,7 +252,7 @@ public function propertyToColumn(string $property): string {


/**
* @return array array of updated fields for update query
* @return array<string, true> array of updated fields for update query
* @since 7.0.0
*/
public function getUpdatedFields(): array {
Expand Down
Loading