Skip to content

Commit

Permalink
Fix merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianSchmick committed Oct 14, 2024
1 parent 277bddc commit 680eafa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Functional/EmbeddedShortcodeHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function expand_shortcodes_registered_in_different_ways(string $shortcode
self::assertSame('test foo=bar', $this->processShortcodes("[$shortcodeName foo=bar]"));
}

public function provideShortcodeNames(): Generator
public static function provideShortcodeNames(): Generator
{
yield 'Inline shortcode defined in bundle config' => ['test-config-inline'];
yield 'ESI-based shortcode defined in bundle config' => ['test-config-esi'];
Expand All @@ -62,7 +62,7 @@ public function processing_with_esi_fragments(string $shortcodeName): void
self::assertStringContainsString('<esi:include ', $this->processShortcodes("[$shortcodeName foo=bar]", $request));
}

public function provideEsiShortcodes(): Generator
public static function provideEsiShortcodes(): Generator
{
yield 'ESI-based shortcode defined in bundle configuration' => ['test-config-esi'];
yield 'ESI-based shortcode defined in service configuration' => ['test-service-esi'];
Expand Down

0 comments on commit 680eafa

Please sign in to comment.