In
{% set caller = call.caller %}
{% if caller.line %}
{% set link = caller.file|file_link(caller.line) %}
{% if link %}
{{ caller.name }}
{% else %}
{{ caller.name }}
{% endif %}
{% else %}
{{ caller.name }}
{% endif %}
line {{ caller.line }} (context):
{{ caller.file|file_excerpt(caller.line)|replace({
'#DD0000': 'var(--highlight-string)',
'#007700': 'var(--highlight-keyword)',
'#0000BB': 'var(--highlight-default)',
'#FF8000': 'var(--highlight-comment)'
})|raw }}
{{ profiler_dump(call.context, maxDepth=1) }}
{% if call.violations|length %}
{% for violation in call.violations %}
{% endfor %}
Path |
Message |
Invalid value |
Violation |
{{ violation.propertyPath }} |
{{ violation.message }} |
{{ profiler_dump(violation.seek('invalidValue')) }} |
{{ profiler_dump(violation) }} |
{% else %}
No violations
{% endif %}
{% else %}