From ab2f9aa37c6e354686b1265f3520ac337d34e754 Mon Sep 17 00:00:00 2001 From: Vladimir Kovpak Date: Fri, 29 Jan 2016 17:44:53 +0200 Subject: [PATCH] Expected: semicolon Added missed semicolon. --- cookbook/security/api_key_authentication.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/security/api_key_authentication.rst b/cookbook/security/api_key_authentication.rst index ee721e4894f..5ed3b0ef133 100644 --- a/cookbook/security/api_key_authentication.rst +++ b/cookbook/security/api_key_authentication.rst @@ -308,7 +308,7 @@ you can use to create an error ``Response``. // this contains information about *why* authentication failed // use it, or return your own message strtr($exception->getMessageKey(), $exception->getMessageData()) - , 403) + , 403); } }