You are here

RequirementsInterface.php in Drupal 10

File

core/modules/migrate/src/Plugin/RequirementsInterface.php
View source
<?php

namespace Drupal\migrate\Plugin;


/**
 * An interface to check for a migrate plugin requirements.
 */
interface RequirementsInterface {

  /**
   * Checks if requirements for this plugin are OK.
   *
   * @throws \Drupal\migrate\Exception\RequirementsException
   *   Thrown when requirements are not met.
   */
  public function checkRequirements();

}

Interfaces

Namesort descending Description
RequirementsInterface An interface to check for a migrate plugin requirements.