DHooks.php

Namespace

Drupal\ddd_hook_order_test\Hook

File

core/modules/system/tests/modules/HookOrder/ddd_hook_order_test/src/Hook/DHooks.php

View source
<?php

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

use Drupal\Core\Hook\Attribute\Hook;
use Drupal\Core\Hook\Attribute\RemoveHook;
use Drupal\Core\Hook\Attribute\ReorderHook;
use Drupal\Core\Hook\Order\Order;
use Drupal\ccc_hook_order_test\Hook\CHooks;

/**
 * This class contains hook implementations.
 *
 * By default, these will be called in module order, which is predictable due
 * to the alphabetical module names.
 */
class DHooks {
    public function testHook() : string {
        return __METHOD__;
    }
    public function sparseTestHook() : string {
        return __METHOD__;
    }

}

Classes

Title Deprecated Summary
DHooks This class contains hook implementations.

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