πŸ‡ΊπŸ‡ΈUnited States @Brandon Mok

Account created on 14 June 2024, 7 months ago
  • Senior Developer at Phase2Β 
#

Recent comments

πŸ‡ΊπŸ‡ΈUnited States Brandon Mok

In the patch from #16, I noticed the check that determines if a child needs to be updated was always evaluating to TRUE for this particular condition $child_entity->id() !== $entity->id. The accessing of the entity's id through $entity->id was observed to return a NULL value every time despite there being a parent entity; thereby, resulting in a truthy check.

Based on the #16 patch, the included patch and interdiff updates the condition so that the accessing of the entity's id is through the id() method of the EntityInterface: $entity->id().

Production build 0.71.5 2024