diff --git a/src/Message/MessageTrait.php b/src/Message/MessageTrait.php index e4c1c97..91ca9c6 100644 --- a/src/Message/MessageTrait.php +++ b/src/Message/MessageTrait.php @@ -289,7 +289,7 @@ protected function trim($string, string $characters = " \n\r\t\v\0"): string return \mb_trim((string) $string, $characters); } - return \trim((string) $string, $characters); + return \trim((string) $string, $characters); // phpcs:ignore } /** diff --git a/src/Message/Uri.php b/src/Message/Uri.php index b0e25b9..eb2f855 100644 --- a/src/Message/Uri.php +++ b/src/Message/Uri.php @@ -413,7 +413,7 @@ protected static function ltrim($string, string $characters = " \n\r\t\v\0"): st return \mb_ltrim((string) $string, $characters); } - return \ltrim((string) $string, $characters); + return \ltrim((string) $string, $characters); // phpcs:ignore } /**