From 5c30f5550ae1e819610dacc13d1f49d7a283d460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20M=C3=BCller?= <856735+stmllr@users.noreply.github.com> Date: Fri, 30 Nov 2018 11:36:58 +0100 Subject: [PATCH] Add missing ; to README example code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b48e5d6..c73c42a 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ $app->get('/api/myEndPoint',function ($request, $response, $args) { $tokenArray = [ $nameKey => $name, $valueKey => $value - ] + ]; return $response->write(json_encode($tokenArray)); })->add($container->get('csrf'));