Exemplo n.º 1
0
function drawCounterArguments(Question $q, Argument $a, $basePath)
{
    $content = "";
    foreach ($a->arguments() as $k => $v) {
        $content .= drawArgument($q, $v, $basePath);
    }
    echo $content;
}