Skip to content

Commit 04880cf

Browse files
author
Yael Lorenzo
authored
Update RequestExecutor.php
1 parent 6ef1898 commit 04880cf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Request/RequestExecutor.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ public function execute()
5757
case 'DELETE':
5858
$requestResponse = $this->getClient()->delete($this->uri, $this->options);
5959
break;
60+
case 'HEAD':
61+
$requestResponse = $this->getClient()->head($this->uri, $this->options);
62+
break;
6063
default:
6164
throw new UnsupportedOperationException(sprintf('HTTP METHOD [%s] is not supported.', $this->method));
6265
}

0 commit comments

Comments
 (0)