CI #956
Annotations
3 warnings
composer test:
src/AcceptNegotiator.php#L36
Escaped Mutant for Mutator "PregMatchRemoveDollar":
@@ @@
foreach ($supportedMediaTypes as $index => $supportedMediaType) {
$this->supportedMediaTypes[$index] = $supportedMediaType;
$supportedMediaTypeParts = [];
- if (1 !== preg_match('#^([^/+]+)/([^/+]+)\+([^/+]+)$#', $supportedMediaType, $supportedMediaTypeParts)) {
+ if (1 !== preg_match('#^([^/+]+)/([^/+]+)\+([^/+]+)#', $supportedMediaType, $supportedMediaTypeParts)) {
continue;
}
$this->suffixBasedSupportedMediaTypes[$index] = $supportedMediaTypeParts[1] . '/' . $supportedMediaTypeParts[3];
|
composer test:
src/AcceptNegotiator.php#L145
Escaped Mutant for Mutator "PregMatchRemoveDollar":
@@ @@
private function compareMediaTypeWithTypeOnly(string $mediaType, array $attributes): ?NegotiatedValueInterface
{
$mediaTypeParts = [];
- if (1 !== preg_match('#^([^/+]+)/\*$#', $mediaType, $mediaTypeParts)) {
+ if (1 !== preg_match('#^([^/+]+)/\*#', $mediaType, $mediaTypeParts)) {
return null;
}
foreach ($this->supportedMediaTypes as $supportedMediaType) {
|
composer test:
src/ContentTypeNegotiator.php#L71
Escaped Mutant for Mutator "PregMatchRemoveDollar":
@@ @@
private function compareMediaTypeWithSuffix(string $mediaType, array $attributes): ?NegotiatedValueInterface
{
$mediaTypeParts = [];
- if (1 !== preg_match('#^([^/]+)/([^+]+)\+(.+)$#', $mediaType, $mediaTypeParts)) {
+ if (1 !== preg_match('#^([^/]+)/([^+]+)\+(.+)#', $mediaType, $mediaTypeParts)) {
return null;
}
$mediaType = $mediaTypeParts[1] . '/' . $mediaTypeParts[3];
|
Loading