bjauy
Results
2
comments of
bjauy
Yes, you need to override ```getDirty()``` method in your models which depend on Elocrypt trait: ```php public function getDirty() { $dirty = []; foreach ($this->attributes as $key => $value) {...
IIRC ```originalIsNumericallyEquivalent``` method was renamed (and refactored) to ```originalIsEquivalent``` in L5.5, so simply adding ```getDirty``` would break the trait for users of older versions. Maybe we could just add second,...