Remove 'authorization' injection from Bulk Delete, Update, and Upsert classes

This commit is contained in:
shimon 2026-01-18 14:01:35 +02:00
parent 94e29cff53
commit 0203323b4a
3 changed files with 0 additions and 3 deletions

View file

@ -66,7 +66,6 @@ class Delete extends DocumentsDelete
->inject('queueForFunctions')
->inject('queueForWebhooks')
->inject('plan')
->inject('authorization')
->inject('eventProcessor')
->callback($this->action(...));
}

View file

@ -68,7 +68,6 @@ class Update extends DocumentsUpdate
->inject('queueForFunctions')
->inject('queueForWebhooks')
->inject('plan')
->inject('authorization')
->inject('eventProcessor')
->callback($this->action(...));
}

View file

@ -68,7 +68,6 @@ class Upsert extends DocumentsUpsert
->inject('queueForFunctions')
->inject('queueForWebhooks')
->inject('plan')
->inject('authorization')
->inject('eventProcessor')
->callback($this->action(...));
}