OrderBefore.php

Namespace

Drupal\Core\Hook\Order

File

core/lib/Drupal/Core/Hook/Order/OrderBefore.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Core\Hook\Order;


/**
 * Set this implementation to be before others.
 */
readonly class OrderBefore extends RelativeOrderBase {
    
    /**
     * {@inheritdoc}
     */
    protected function isAfter() : bool {
        return FALSE;
    }

}

Classes

Title Deprecated Summary
OrderBefore Set this implementation to be before others.

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