Skip to content

Commit 469e8a4

Browse files
authored
Minor code correction in guard authentication.
Add a missing semicolon.
1 parent a5d47c6 commit 469e8a4

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)