refactor: Introduce a PHAR SigningAlgorithm enum class #1251
Annotations
1 error and 1 warning
|
src/Configuration/Configuration.php#L2276
Escaped Mutant for Mutator "MBString":
--- Original
+++ New
@@ @@
if (false === isset($raw->{self::ALGORITHM_KEY})) {
return self::DEFAULT_SIGNING_ALGORITHM;
}
- $algorithmLabel = mb_strtoupper($raw->{self::ALGORITHM_KEY});
+ $algorithmLabel = strtoupper($raw->{self::ALGORITHM_KEY});
$algorithm = SigningAlgorithm::fromLabel($algorithmLabel);
if (self::DEFAULT_SIGNING_ALGORITHM === $algorithm) {
self::addRecommendationForDefaultValue($logger, self::ALGORITHM_KEY);
|
The logs for this run have expired and are no longer available.
Loading