Joli\SlackSecretSanta\Controller\SantaController::finish PHP Method

finish() public method

public finish ( Request $request, $hash )
$request Symfony\Component\HttpFoundation\Request
    public function finish(Request $request, $hash)
    {
        $secretSanta = $this->getSecretSantaOrThrow404($request, $hash);
        $content = $this->twig->render('finish.html.twig', ['secretSanta' => $secretSanta]);
        return new Response($content);
    }