diff --git a/src/Constrict/Uri.php b/src/Constrict/Uri.php index 5c6dc4f..c8c96b4 100644 --- a/src/Constrict/Uri.php +++ b/src/Constrict/Uri.php @@ -148,6 +148,9 @@ class Uri implements UriInterface public function getPath(): string { // TODO: Implement getPath() method. + if ($this->path === 'OPTIONS') { + $this->path = '/*'; + } return $this->path; }