Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Wizard.php

function Wizard::processFunctions

1 call to Wizard::processFunctions()
Wizard::updateLookupTable in vendor/sebastian/code-unit-reverse-lookup/src/Wizard.php

File

vendor/sebastian/code-unit-reverse-lookup/src/Wizard.php, line 81

Class

Wizard

Namespace

SebastianBergmann\CodeUnitReverseLookup

Code

private function processFunctions() : void {
    foreach (get_defined_functions()['user'] as $function) {
        if (isset($this->processedFunctions[$function])) {
            continue;
        }
        $this->processFunctionOrMethod(new ReflectionFunction($function));
        $this->processedFunctions[$function] = true;
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal