skip stream processing if silent
This commit is contained in:
@@ -48,6 +48,10 @@ class Stream
|
||||
*/
|
||||
public function afterSave(Entity $entity, array $options): void
|
||||
{
|
||||
if (!empty($options['silent'])) {
|
||||
return;
|
||||
}
|
||||
|
||||
$this->processor->afterSave($entity, $options);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user