Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
rancoud committed Dec 5, 2024
1 parent 0280798 commit ab0d4eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Message/MessageTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ protected function trim($string, string $characters = " \n\r\t\v\0"): string
return \mb_trim((string) $string, $characters);

Check warning on line 289 in src/Message/MessageTrait.php

View check run for this annotation

Codecov / codecov/patch

src/Message/MessageTrait.php#L289

Added line #L289 was not covered by tests
}

return \trim((string) $string, $characters);
return \trim((string) $string, $characters); // phpcs:ignore
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Message/Uri.php
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ protected static function ltrim($string, string $characters = " \n\r\t\v\0"): st
return \mb_ltrim((string) $string, $characters);

Check warning on line 413 in src/Message/Uri.php

View check run for this annotation

Codecov / codecov/patch

src/Message/Uri.php#L413

Added line #L413 was not covered by tests
}

return \ltrim((string) $string, $characters);
return \ltrim((string) $string, $characters); // phpcs:ignore
}

/**
Expand Down

0 comments on commit ab0d4eb

Please sign in to comment.