* @deprecated going to be removed in Psalm 5 */ function getArguments() : array { return CliUtils::getArguments(); } /** * @param string|array|null|false $f_paths * * @return list|null * @deprecated going to be removed in Psalm 5 */ function getPathsToCheck($f_paths): ?array { return CliUtils::getPathsToCheck($f_paths); } /** * @psalm-pure * @deprecated going to be removed in Psalm 5 */ function getPsalmHelpText(): string { return CliUtils::getPsalmHelpText(); } /** @deprecated going to be removed in Psalm 5 */ function initialiseConfig( ?string $path_to_config, string $current_dir, string $output_format, ?ClassLoader $first_autoloader, bool $create_if_non_existent = false ): Config { return CliUtils::initializeConfig( $path_to_config, $current_dir, $output_format, $first_autoloader, $create_if_non_existent ); } /** @deprecated going to be removed in Psalm 5 */ function update_config_file(Config $config, string $config_file_path, string $baseline_path) : void { CliUtils::updateConfigFile($config, $config_file_path, $baseline_path); } /** @deprecated going to be removed in Psalm 5 */ function get_path_to_config(array $options): ?string { return CliUtils::getPathToConfig($options); } /** * @psalm-pure * @deprecated going to be removed in Psalm 5 */ function getMemoryLimitInBytes(): int { return CliUtils::getMemoryLimitInBytes(); }