for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BrenoRoosevelt\Validation\Translation;
/** @internal */
class NaiveTranslator implements TranslatorInterface
{
public function translate(string $message, ...$args): ?string
return sprintf($message, ...$args);
}