Skip to content

Commit 7857eb1

Browse files
committed
🚿
1 parent dfe940e commit 7857eb1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Psr7/Uri.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ protected function filterScheme(string $scheme):string{
286286
}
287287

288288
/**
289-
* @throws \InvalidArgumentException
289+
*
290290
*/
291291
protected function filterUserInfo(string $userOrPass):string{
292292
return $this->replaceChars(
@@ -296,7 +296,7 @@ protected function filterUserInfo(string $userOrPass):string{
296296
}
297297

298298
/**
299-
* @throws \InvalidArgumentException
299+
*
300300
*/
301301
protected function filterHost(string $host):string{
302302
$filteredIPv6 = filter_var(trim($host, '[]'), FILTER_VALIDATE_IP, FILTER_FLAG_IPV6);
@@ -325,7 +325,7 @@ protected function filterPort(int|null $port):int|null{
325325
}
326326

327327
/**
328-
* @throws \InvalidArgumentException
328+
*
329329
*/
330330
protected function filterPath(string $path):string{
331331
return $this->replaceChars(
@@ -335,7 +335,7 @@ protected function filterPath(string $path):string{
335335
}
336336

337337
/**
338-
* @throws \InvalidArgumentException
338+
*
339339
*/
340340
protected function filterQueryOrFragment(string $queryOrFragment):string{
341341
return $this->replaceChars(

0 commit comments

Comments
 (0)