From 4e20c39316a4661891e613945002c8ec9fc16462 Mon Sep 17 00:00:00 2001 From: enekochan Date: Wed, 17 Jan 2018 17:50:04 +0100 Subject: [PATCH] Fix Authenticator interface use statement --- message/authentication.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/message/authentication.rst b/message/authentication.rst index 4ea6f2c..f314662 100644 --- a/message/authentication.rst +++ b/message/authentication.rst @@ -154,7 +154,7 @@ Implement Your Own Implementing an authentication method is easy: only one method needs to be implemented:: - use Http\Message\Authentication\Authentication; + use Http\Message\Authentication; use Psr\Http\Message\RequestInterface; class MyAuth implements Authentication