public function TestTracker::trackItemsDeleted in Search API 8
Removes items from the tracking system for this index.
Parameters
string[]|null $ids: (optional) The item IDs of the deleted items; or NULL to remove all items.
Overrides TrackerInterface::trackItemsDeleted
File
- tests/
search_api_test/ src/ Plugin/ search_api/ tracker/ TestTracker.php, line 79
Class
- TestTracker
- Provides a tracker implementation which uses a FIFO-like processing order.
Namespace
Drupal\search_api_test\Plugin\search_api\trackerCode
public function trackItemsDeleted(array $ids = NULL) {
$this
->logMethodCall(__FUNCTION__, func_get_args());
}