You are here

interface DeprecationAnalyserInterface in Upgrade Status 8

Hierarchy

Expanded class hierarchy of DeprecationAnalyserInterface

All classes that implement DeprecationAnalyserInterface

File

src/DeprecationAnalyserInterface.php, line 7

Namespace

Drupal\upgrade_status
View source
interface DeprecationAnalyserInterface {

  /**
   * Analyse the codebase of an extension including all its sub-components.
   *
   * @param \Drupal\Core\Extension\Extension $extension
   *   The extension to analyse.
   *
   * @return null
   *   Errors are logged to the logger, data is stored to keyvalue storage.
   */
  public function analyse(Extension $extension);

}

Members

Namesort descending Modifiers Type Description Overrides
DeprecationAnalyserInterface::analyse public function Analyse the codebase of an extension including all its sub-components. 1