Browse Source

Merge pull request #13496 from robertpustulka/set-dirty

Fix default value for setDirty() interface method annotation.
ADmad 6 years ago
parent
commit
40b0d6f2ee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Datasource/EntityInterface.php

+ 1 - 1
src/Datasource/EntityInterface.php

@@ -27,7 +27,7 @@ use JsonSerializable;
  * @method array getHidden()
  * @method $this setVirtual(array $properties, $merge = false)
  * @method array getVirtual()
- * @method $this setDirty($property, $isDirty)
+ * @method $this setDirty($property, $isDirty = true)
  * @method bool isDirty($property = null)
  * @method bool hasErrors($includeNested = true)
  * @method array getErrors()