function entity_share_async_uninstall in Entity Share 8.3
Implements hook_uninstall().
File
- modules/
entity_share_async/ entity_share_async.install, line 15
Code
function entity_share_async_uninstall() {
\Drupal::state()
->delete(QueueHelperInterface::STATE_ID);
$queue = \Drupal::queue(QueueHelperInterface::QUEUE_NAME);
$queue
->deleteQueue();
}