File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 15
15
use Symfony \Component \HttpFoundation \Request ;
16
16
use Symfony \Component \HttpFoundation \RequestStack ;
17
17
use Symfony \Component \HttpFoundation \Response ;
18
+ use Symfony \Component \VarDumper \Cloner \Data ;
18
19
use Symfony \Contracts \EventDispatcher \EventDispatcherInterface ;
19
20
use Symfony \Contracts \Service \ResetInterface ;
20
21
@@ -80,8 +81,10 @@ public function setCalledListeners(array $listeners)
80
81
81
82
/**
82
83
* @see TraceableEventDispatcher
84
+ *
85
+ * @return array|Data
83
86
*/
84
- public function getCalledListeners (): array
87
+ public function getCalledListeners ()
85
88
{
86
89
return $ this ->data ['called_listeners ' ];
87
90
}
@@ -96,8 +99,10 @@ public function setNotCalledListeners(array $listeners)
96
99
97
100
/**
98
101
* @see TraceableEventDispatcher
102
+ *
103
+ * @return array|Data
99
104
*/
100
- public function getNotCalledListeners (): array
105
+ public function getNotCalledListeners ()
101
106
{
102
107
return $ this ->data ['not_called_listeners ' ];
103
108
}
@@ -114,8 +119,10 @@ public function setOrphanedEvents(array $events)
114
119
115
120
/**
116
121
* @see TraceableEventDispatcher
122
+ *
123
+ * @return array|Data
117
124
*/
118
- public function getOrphanedEvents (): array
125
+ public function getOrphanedEvents ()
119
126
{
120
127
return $ this ->data ['orphaned_events ' ];
121
128
}
You can’t perform that action at this time.
0 commit comments