Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
26 | interface Modifiable extends \MongoDB\BSON\Persistable |
||
27 | { |
||
28 | /** |
||
29 | * Whether the object has any changes. |
||
30 | * |
||
31 | * @return bool Whether the object has any changes |
||
32 | */ |
||
33 | public function isDirty(): bool; |
||
34 | |||
35 | /** |
||
36 | * Gets the pending changes. |
||
37 | * |
||
38 | * @return array<string,array<string,mixed>>; The pending changes |
||
|
|||
39 | */ |
||
40 | public function getChanges(): array; |
||
41 | } |
||
42 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.