Skip to content

Commit fc21389

Browse files
committed
minor #8143 Syntax error in documentation example (ciajulius)
This PR was merged into the 3.3 branch. Discussion ---------- Syntax error in documentation example Added curly brace where it was missing in code example Commits ------- a760613 Syntax error in documentation example
2 parents da156dd + a760613 commit fc21389

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

security/api_key_authentication.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ current URL is before creating the token in ``createToken()``::
593593
// set the only URL where we should look for auth information
594594
// and only return the token if we're at that URL
595595
$targetUrl = '/login/check';
596-
if ($request->getPathInfo() !== $targetUrl)
596+
if ($request->getPathInfo() !== $targetUrl) {
597597
return;
598598
}
599599

0 commit comments

Comments
 (0)