DestructableInterface.php

Contains \Drupal\Core\DestructableInterface.

Namespace

Drupal\Core

File

drupal/core/lib/Drupal/Core/DestructableInterface.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Core\DestructableInterface.
 */
namespace Drupal\Core;


/**
 * The interface for services that need explicit destruction.
 */
interface DestructableInterface {

  /**
   * Performs destruct operations.
   */
  public function destruct();

}

Interfaces

Namesort descending Description
DestructableInterface The interface for services that need explicit destruction.