Skip to content

Commit be75758

Browse files
committed
minor #8863 Minor code correction in guard authentication. (ChadSikorra)
This PR was merged into the 3.4 branch. Discussion ---------- Minor code correction in guard authentication. Add a missing semicolon. Commits ------- 469e8a4 Minor code correction in guard authentication.
2 parents 981c211 + 469e8a4 commit be75758

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

security/guard_authentication.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ This requires you to implement several methods::
171171
*/
172172
public function supports(Request $request)
173173
{
174-
return $request->headers->has('X-AUTH-TOKEN')
174+
return $request->headers->has('X-AUTH-TOKEN');
175175
}
176176

177177
/**

0 commit comments

Comments
 (0)