respect-validation/library/Message/Renderer.php
Henrique Moody 423172985b
Remove unused argument from Renderer::render()
Apparently, we were not using the argument anywhere, but I didn't notice
that before.
2025-12-19 17:00:31 +01:00

17 lines
305 B
PHP

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
namespace Respect\Validation\Message;
use Respect\Validation\Result;
interface Renderer
{
public function render(Result $result, Translator $translator): string;
}