for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Conia\Chuck\Renderer;
use Conia\Chuck\Response;
interface Renderer
{
public function render(mixed $data, mixed ...$args): string;
public function response(mixed $data, mixed ...$args): Response;
}