1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
This commit is contained in:
Daniil Gentili 2023-10-19 13:19:26 +02:00
parent 0f41831e59
commit 076bd85e00
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ $order = array_map(
);
array_multisort($order, $files);
$chunks = array_chunk($files, ceil(count($files) / $number_of_chunks));
$chunks = array_chunk($files, (int) ceil(count($files) / $number_of_chunks));
$phpunit_config = new DOMDocument('1.0', 'UTF-8');
$phpunit_config->preserveWhiteSpace = false;

View File

@ -16,7 +16,7 @@ use function strpos;
/**
* @internal
*/
final class PluginList
class PluginList
{
private ?ConfigFile $config_file = null;