mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 16:27:23 +01:00
Uses Collision ^7.0
This commit is contained in:
@ -57,6 +57,11 @@ final class DatasetsRepository
|
||||
self::$withs[$filename . '>>>' . $description] = $with;
|
||||
}
|
||||
|
||||
public static function has(string $filename, string $description): bool
|
||||
{
|
||||
return array_key_exists($filename . '>>>' . $description, self::$withs);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Closure|iterable<int|string, mixed>|never
|
||||
*
|
||||
@ -107,7 +112,7 @@ final class DatasetsRepository
|
||||
$values = array_merge($values, $datasetCombinationElement['values']);
|
||||
}
|
||||
|
||||
$datasetDescriptions[] = $description . ' with ' . implode(' / ', $partialDescriptions);
|
||||
$datasetDescriptions[] = implode(' / ', $partialDescriptions);
|
||||
$datasetValues[] = $values;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user