CachedModuleHandlerInterface.php

Contains Drupal\Core\Extension\CachedModuleHandlerInterface.

Namespace

Drupal\Core\Extension

File

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

/**
 * @file
 * Contains Drupal\Core\Extension\CachedModuleHandlerInterface.
 */
namespace Drupal\Core\Extension;


/**
 * Interface for cacheable module handlers.
 */
interface CachedModuleHandlerInterface extends ModuleHandlerInterface {

  /**
   * Write the hook implementation info to the cache.
   */
  public function writeCache();

}

Interfaces

Namesort descending Description
CachedModuleHandlerInterface Interface for cacheable module handlers.