@@ -25,7 +25,7 @@ class RenderContentStrategyTest extends BaseRenderStrategyTest
2525{
2626 public function testUnsupportedValueObject (): void
2727 {
28- $ renderContentStrategy = self :: createRenderStrategy (
28+ $ renderContentStrategy = $ this -> createRenderStrategy (
2929 RenderContentStrategy::class,
3030 [
3131 $ this ->createFragmentRenderer (),
@@ -42,7 +42,7 @@ public function testUnsupportedValueObject(): void
4242
4343 public function testDefaultFragmentRenderer (): void
4444 {
45- $ renderContentStrategy = self :: createRenderStrategy (
45+ $ renderContentStrategy = $ this -> createRenderStrategy (
4646 RenderContentStrategy::class,
4747 [
4848 $ this ->createFragmentRenderer ('inline ' ),
@@ -61,7 +61,7 @@ public function testDefaultFragmentRenderer(): void
6161
6262 public function testUnknownFragmentRenderer (): void
6363 {
64- $ renderContentStrategy = self :: createRenderStrategy (
64+ $ renderContentStrategy = $ this -> createRenderStrategy (
6565 RenderContentStrategy::class,
6666 [],
6767 );
@@ -75,7 +75,7 @@ public function testUnknownFragmentRenderer(): void
7575
7676 public function testMultipleFragmentRenderers (): void
7777 {
78- $ renderContentStrategy = self :: createRenderStrategy (
78+ $ renderContentStrategy = $ this -> createRenderStrategy (
7979 RenderContentStrategy::class,
8080 [
8181 $ this ->createFragmentRenderer ('method_a ' ),
@@ -155,7 +155,7 @@ public static function forwardParamOptionsToFragmentRenderer(MockObject $fragmen
155155
156156 public function testDuplicatedFragmentRenderers (): void
157157 {
158- $ renderContentStrategy = self :: createRenderStrategy (
158+ $ renderContentStrategy = $ this -> createRenderStrategy (
159159 RenderContentStrategy::class,
160160 [
161161 $ this ->createFragmentRenderer ('method_a ' , 'decorator service used ' ),
@@ -210,7 +210,7 @@ public function testExpectedMethodRenderArgumentsFormat(): void
210210 ->with ($ controllerReferenceCallback , $ requestCallback )
211211 ->willReturn (new Response ('some_rendered_content ' ));
212212
213- $ renderContentStrategy = self :: createRenderStrategy (
213+ $ renderContentStrategy = $ this -> createRenderStrategy (
214214 RenderContentStrategy::class,
215215 [
216216 $ this ->createFragmentRenderer ('method_a ' ),
0 commit comments