We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ef226e9 + c04c320 commit 0390c06Copy full SHA for 0390c06
1 file changed
lib/public/AppFramework/Db/Entity.php
@@ -21,8 +21,9 @@
21
abstract class Entity {
22
/** @var int $id */
23
public $id;
24
+ /** @var array<string, true> $_updatedFields */
25
private array $_updatedFields = [];
- /** @psalm-param $_fieldTypes array<string, Types::*> */
26
+ /** @var array<string, Types::*> $_fieldTypes */
27
protected array $_fieldTypes = ['id' => 'integer'];
28
29
/**
@@ -251,7 +252,7 @@ public function propertyToColumn(string $property): string {
251
252
253
254
- * @return array array of updated fields for update query
255
+ * @return array<string, true> array of updated fields for update query
256
* @since 7.0.0
257
*/
258
public function getUpdatedFields(): array {
0 commit comments