Skip to content

Commit

Permalink
Merge pull request #582 from jpmschuler/regression-XPathRenderer2
Browse files Browse the repository at this point in the history
[REGRESSION] method signature mismatch
  • Loading branch information
opi99 authored Sep 19, 2024
2 parents adbc834 + f8969c6 commit 193589d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Classes/Handler/Render/XpathRenderHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
* The TYPO3 project - inspiring people to share!
*/

use Psr\Http\Message\ServerRequestInterface;
use Tvp\TemplaVoilaPlus\Domain\Model\Configuration\TemplateConfiguration;
use TYPO3\CMS\Core\Utility\GeneralUtility;

Expand All @@ -30,7 +29,7 @@ class XpathRenderHandler implements RenderHandlerInterface
protected $domDocument;
protected $domXpath;

public function renderTemplate(TemplateConfiguration $templateConfiguration, array $processedValues, array $row, ServerRequestInterface $request): string
public function renderTemplate(TemplateConfiguration $templateConfiguration, array $processedValues, array $row): string
{
$this->domDocument = new \DOMDocument();
libxml_use_internal_errors(true);
Expand Down

0 comments on commit 193589d

Please sign in to comment.