AiVdbProviderClientBase calls undefined method deleteFromCollection
>>> [!note] Migrated issue
<!-- Drupal.org comment -->
<!-- Migrated from issue #3536096. -->
Reported by: [mediabounds](https://www.drupal.org/user/292228)
Related to !760
>>>
<p>The <code>deleteItems</code> implementation on <code>AiVdbProviderClientBase</code> attempts to call <code>deleteFromCollection</code> on the wrong object.</p>
<pre><pre>$this->getClient()->deleteFromCollection(<br> collection_name: $configuration['database_settings']['collection'],<br> ids: $vdbIds,<br> database_name: $configuration['database_settings']['database_name'],<br>);</pre></pre><p>Should be...</p>
<pre><pre>$this->deleteFromCollection(<br> collection_name: $configuration['database_settings']['collection'],<br> ids: $vdbIds,<br> database: $configuration['database_settings']['database_name'],<br>);</pre></pre><p>
MR incoming</p>
issue