File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class MyResponseHandler implements ResponseHandlerInterface
9
9
public function getSupportedPayloadTypes (): array
10
10
{
11
11
return [
12
- MyResponseHandler ::class,
12
+ MyResponsePayload ::class,
13
13
];
14
14
}
15
15
Original file line number Diff line number Diff line change 4
4
use Pitch \AdrBundle \Action \ActionProxy ;
5
5
use Pitch \AdrBundle \Fixtures \MyException ;
6
6
use Pitch \AdrBundle \Fixtures \MyResponseHandler ;
7
+ use Pitch \AdrBundle \Fixtures \MyResponsePayload ;
7
8
use Pitch \AdrBundle \PitchAdrBundle ;
8
9
use Pitch \Annotation \PitchAnnotationBundle ;
9
10
use RuntimeException ;
@@ -141,5 +142,9 @@ public function testResponder()
141
142
$ event = $ this ->dispatchViewEvent ('foo ' );
142
143
143
144
$ this ->assertEquals (['value ' => 'foo ' ], $ event ->getControllerResult ());
145
+
146
+ $ event = $ this ->dispatchViewEvent (new MyResponsePayload ());
147
+
148
+ $ this ->assertEquals (['value ' => 'foo ' ], $ event ->getControllerResult ());
144
149
}
145
150
}
You can’t perform that action at this time.
0 commit comments