From 71029336dedb0b5bcaac6e43dc58eddd29b3dfea Mon Sep 17 00:00:00 2001 From: Lee Boynton Date: Wed, 14 Sep 2016 16:58:37 +0100 Subject: [PATCH] Update QueryParam plugin name/namespace Update QueryParam plugin example to use the correct name and namespace --- message/authentication.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/message/authentication.rst b/message/authentication.rst index c606e64..48657b9 100644 --- a/message/authentication.rst +++ b/message/authentication.rst @@ -89,9 +89,9 @@ Query Params ``http://api.example.com/endpoint?access_token=9zh987g86fg87gh978hg9g79``:: - use Http\Authentication\QueryParams; + use Http\Message\Authentication\QueryParam; - $authentication = new QueryParams([ + $authentication = new QueryParam([ 'access_token' => '9zh987g86fg87gh978hg9g79', ]);