I’ve added a new behavior and added the code below just to test to see if my override is working however this never gets called within my behavior. Is there something else I need to do to make it work?
public function beforeSave(Event $event, EntityInterface $entity, ArrayObject $options)
{
echo ‘blah’;
die;
}