Skip to content

Commit

Permalink
Fix interface implementations of PropertyCollection
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaidelich committed Sep 14, 2023
1 parent b911fa0 commit dae6084
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@

/**
* The property collection that provides access to the serialized and deserialized properties of a node
*
* @implements \ArrayAccess<string,mixed>
* @implements \IteratorAggregate<string,mixed>
* @api This object should not be instantiated by 3rd parties, but it is part of the {@see Node} read model
*/
final class PropertyCollection
final class PropertyCollection implements \ArrayAccess, \IteratorAggregate
{
/**
* Properties from Nodes
Expand Down

0 comments on commit dae6084

Please sign in to comment.