processor = $processor; } /** * @param array $options */ public function afterSave(Entity $entity, array $options): void { if ( !empty($options[SaveOption::SILENT]) || !empty($options['noNotifications']) ) { return; } $this->processor->afterSave($entity); } }