TestHookAfterClassMethod.php

Same filename in this branch
  1. 11.x core/modules/system/tests/modules/HookCollector/aaa_hook_collector_test/src/Hook/TestHookAfterClassMethod.php

Namespace

Drupal\bbb_hook_collector_test\Hook

File

core/modules/system/tests/modules/HookCollector/bbb_hook_collector_test/src/Hook/TestHookAfterClassMethod.php

View source
<?php

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

use Drupal\Core\Hook\Attribute\Hook;

/**
 * This class contains hook implementations.
 *
 * By default, these will be called in module order, which is predictable due
 * to the alphabetical module names. Some of the implementations are reordered
 * using order attributes.
 */
class TestHookAfterClassMethod {
    
    /**
     * This pair tests OrderAfter with a passed class and method.
     */
    public static function hookAfterClassMethod() : string {
        // This should be run first since another hook overrides the natural order.
        return __METHOD__;
    }

}

Classes

Title Deprecated Summary
TestHookAfterClassMethod This class contains hook implementations.

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