You are here

ModuleHandlerEmptyAlter.php in Autosave Form 8

File

src/EmptyAlter/Extension/ModuleHandlerEmptyAlter.php
View source
<?php

namespace Drupal\autosave_form\EmptyAlter\Extension;

use Drupal\Core\Extension\ModuleHandler;

/**
 * Class that has an empty implementation of the hook-alter method.
 */
class ModuleHandlerEmptyAlter extends ModuleHandler {

  /**
   * {@inheritdoc}
   */
  public function __construct() {
  }

  /**
   * {@inheritdoc}
   */
  public function alter($type, &$data, &$context1 = NULL, &$context2 = NULL) {
  }

}

Classes

Namesort descending Description
ModuleHandlerEmptyAlter Class that has an empty implementation of the hook-alter method.