update php versions support #79
Annotations
5 warnings
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Infection:
src/ToggleConfigProvider.php#L33
Escaped Mutant for Mutator "CastString":
--- Original
+++ New
@@ @@
/** @var array<array<string, string>> $strategyTypes */
$strategyTypes = $pheatureFlagsConfig['strategy_types'];
$strategyTypeAliases = array_reduce($strategyTypes, static function (array $strategies, array $current) {
- $strategies[(string) $current['type']] = (string) $current['factory_id'];
+ $strategies[$current['type']] = (string) $current['factory_id'];
return $strategies;
}, []);
/** @var array<array<string, string>> $segmentTypes */
|
Infection:
src/ToggleConfigProvider.php#L33
Escaped Mutant for Mutator "CastString":
--- Original
+++ New
@@ @@
/** @var array<array<string, string>> $strategyTypes */
$strategyTypes = $pheatureFlagsConfig['strategy_types'];
$strategyTypeAliases = array_reduce($strategyTypes, static function (array $strategies, array $current) {
- $strategies[(string) $current['type']] = (string) $current['factory_id'];
+ $strategies[(string) $current['type']] = $current['factory_id'];
return $strategies;
}, []);
/** @var array<array<string, string>> $segmentTypes */
|
Infection:
src/ToggleConfigProvider.php#L46
Escaped Mutant for Mutator "CastString":
--- Original
+++ New
@@ @@
/** @var array<array<string, string>> $segmentTypes */
$segmentTypes = $pheatureFlagsConfig['segment_types'];
$segmentTypeAliases = array_reduce($segmentTypes, static function (array $segments, array $current) {
- $segments[(string) $current['type']] = (string) $current['factory_id'];
+ $segments[$current['type']] = (string) $current['factory_id'];
return $segments;
}, []);
return ['dependencies' => ['invokables' => [RouterDelegator::class => RouterDelegator::class], 'aliases' => array_merge($strategyTypeAliases, $segmentTypeAliases), 'factories' => [], 'delegators' => [Application::class => [RouterDelegator::class]]], 'pheature_flags' => $pheatureFlagsConfig];
|
Infection:
src/ToggleConfigProvider.php#L46
Escaped Mutant for Mutator "CastString":
--- Original
+++ New
@@ @@
/** @var array<array<string, string>> $segmentTypes */
$segmentTypes = $pheatureFlagsConfig['segment_types'];
$segmentTypeAliases = array_reduce($segmentTypes, static function (array $segments, array $current) {
- $segments[(string) $current['type']] = (string) $current['factory_id'];
+ $segments[(string) $current['type']] = $current['factory_id'];
return $segments;
}, []);
return ['dependencies' => ['invokables' => [RouterDelegator::class => RouterDelegator::class], 'aliases' => array_merge($strategyTypeAliases, $segmentTypeAliases), 'factories' => [], 'delegators' => [Application::class => [RouterDelegator::class]]], 'pheature_flags' => $pheatureFlagsConfig];
|
The logs for this run have expired and are no longer available.
Loading