ModuleTestOopPreprocessThemeHooks.php

Namespace

Drupal\module_test_oop_preprocess\Hook

File

core/modules/system/tests/modules/module_test_oop_preprocess/src/Hook/ModuleTestOopPreprocessThemeHooks.php

View source
<?php

declare (strict_types=1);
namespace Drupal\module_test_oop_preprocess\Hook;

use Drupal\Core\Hook\Attribute\Hook;

/**
 * Hook implementations for module_test_oop_preprocess.
 */
class ModuleTestOopPreprocessThemeHooks {
  public function rootPreprocess($arg) : mixed {
    return $arg;
  }
  public function preprocessTest($arg) : mixed {
    return $arg;
  }

}

Classes

Title Deprecated Summary
ModuleTestOopPreprocessThemeHooks Hook implementations for module_test_oop_preprocess.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.