From 5563cba568004abd9bb3dea3081adcc434df752a Mon Sep 17 00:00:00 2001 From: Lasse Mammen Date: Fri, 15 Oct 2021 09:37:09 +0100 Subject: [PATCH] fix: add head http verb --- src/Client/ClientInterface.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Client/ClientInterface.php b/src/Client/ClientInterface.php index 6fa3321..e49fd4a 100644 --- a/src/Client/ClientInterface.php +++ b/src/Client/ClientInterface.php @@ -11,6 +11,7 @@ interface ClientInterface { + const HTTP_HEAD = 'HEAD'; const HTTP_GET = 'GET'; const HTTP_POST = 'POST'; const HTTP_DELETE = 'DELETE';