results->attributes()->getAllTypes();
foreach ($attributeTypes as $attributeType) {
echo "Attribute: $attributeType
";
echo "
";
$attributeMappings = $this->results->attributes()->get($attributeType);
foreach ($attributeMappings as $attributeMapping) {
$className = $attributeMapping->class->getFullyQualified();
$methodName = $attributeMapping->method?->toString() ?? '';
echo "- " . $className . '::' . $methodName . '()
';
}
echo "
";
}
}
}