You are here

PluginCleanupInterface.php in Ultimate Cron 8.2

File

src/PluginCleanupInterface.php
View source
<?php

namespace Drupal\ultimate_cron;


/**
 * Plugins can implement this to be invoked for regular cleanup tasks.
 */
interface PluginCleanupInterface {

  /**
   * Cleans and purges data stored by this plugin.
   */
  function cleanup();

}

Interfaces

Namesort descending Description
PluginCleanupInterface Plugins can implement this to be invoked for regular cleanup tasks.