Skip to content

Commit ab6de47

Browse files
committed
Use Twig namespaced syntax
1 parent e89a70b commit ab6de47

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Resources/config/collector.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ services:
33
rs_queue.data_collector:
44
class: RSQueueBundle\Collector\RSQueueCollector
55
tags:
6-
- { name: data_collector, template: "RSQueueBundle:Collector:rsqueue", id: "rsqueue_collector" }
6+
- { name: data_collector, template: "@RSQueue/Collector/rsqueue", id: "rsqueue_collector" }
77
- { name: kernel.event_listener, event: rsqueue.producer, method: onProducerAction }
8-
- { name: kernel.event_listener, event: rsqueue.publisher, method: onPublisherAction }
8+
- { name: kernel.event_listener, event: rsqueue.publisher, method: onPublisherAction }

Resources/views/Collector/rsqueue.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends 'WebProfilerBundle:Profiler:layout.html.twig' %}
1+
{% extends '@WebProfiler/Profiler/layout.html.twig' %}
22

33
{% block toolbar %}
44
{# the web debug toolbar content #}
@@ -16,7 +16,7 @@
1616
<span>{{ collector.publisher|length }}</span>
1717
</div>
1818
{% endset %}
19-
{% include 'WebProfilerBundle:Profiler:toolbar_item.html.twig' with { 'link': profiler_url } %}
19+
{% include '@WebProfiler/Profiler/toolbar_item.html.twig' with { 'link': profiler_url } %}
2020
{% endblock %}
2121

2222
{% block menu %}

0 commit comments

Comments
 (0)