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
Namespace
SebastianBergmann\CodeUnitReverseLookupCode
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;
}
}