Titou74

Results 2 comments of Titou74

Problem solved with this modifications on TrackedCollection: l.122 `'last_state' => $object->getAllUnkeyedValues()` l.194 `if (isset($item['model']) && isset($item['last_state']) && $item['model']->getAllUnkeyedValues() != $item['last_state']) {`

Previous correction break the "remove" function. New working correction: l.120 ``` $this->list[$object->getHash()] = [ 'model' => $object, 'last_state' => clone $object, 'last_state_values' => $object->getAllUnkeyedValues() ]; ``` l.195 ``` if (isset($item['model'])...