mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
77 lines
4.3 KiB
PHP
77 lines
4.3 KiB
PHP
<?php // phpcs:ignoreFile
|
|
|
|
/**
|
|
* This contains the information needed to convert the function signatures for php 7.1 to php 7.0 (and vice versa)
|
|
*
|
|
* This file has three sections.
|
|
* The 'added' section contains function/method names from FunctionSignatureMap (And alternates, if applicable) that did not exist prior to PHP 7.1
|
|
* The 'removed' section contains the signatures that were removed in php 7.1.
|
|
* The 'changed' section contains functions for which the signature has changed for php 7.1.
|
|
* Each function in the 'changed' section has an 'old' and a 'new' section,
|
|
* representing the function as it was in PHP before 7.1 and in PHP 7.1, respectively
|
|
*
|
|
* @see CallMap.php
|
|
*
|
|
* @phan-file-suppress PhanPluginMixedKeyNoKey (read by Phan when analyzing this file)
|
|
*/
|
|
return [
|
|
'added' => [
|
|
'Closure::fromCallable' => ['Closure', 'callable'=>'callable'],
|
|
'curl_multi_errno' => ['int|false', 'mh'=>'resource'],
|
|
'curl_share_errno' => ['int|false', 'sh'=>'resource'],
|
|
'curl_share_strerror' => ['?string', 'error_code'=>'int'],
|
|
'getenv\'1' => ['array<string,string>'],
|
|
'hash_hkdf' => ['non-empty-string|false', 'algo'=>'string', 'key'=>'string', 'length='=>'int', 'info='=>'string', 'salt='=>'string'],
|
|
'is_iterable' => ['bool', 'value'=>'mixed'],
|
|
'openssl_get_curve_names' => ['list<string>'],
|
|
'pcntl_async_signals' => ['bool', 'enable='=>'bool'],
|
|
'pcntl_signal_get_handler' => ['int|string', 'signal'=>'int'],
|
|
'sapi_windows_cp_conv' => ['?string', 'in_codepage'=>'int|string', 'out_codepage'=>'int|string', 'subject'=>'string'],
|
|
'sapi_windows_cp_get' => ['int', 'kind='=>'string'],
|
|
'sapi_windows_cp_is_utf8' => ['bool'],
|
|
'sapi_windows_cp_set' => ['bool', 'codepage'=>'int'],
|
|
'session_create_id' => ['string', 'prefix='=>'string'],
|
|
'session_gc' => ['int|false'],
|
|
],
|
|
'changed' => [
|
|
'DateTimeZone::listIdentifiers' => [
|
|
'old' => ['list<string>|false', 'timezoneGroup='=>'int', 'countryCode='=>'string'],
|
|
'new' => ['list<string>|false', 'timezoneGroup='=>'int', 'countryCode='=>'string|null'],
|
|
],
|
|
'IntlDateFormatter::format' => [
|
|
'old' => ['string|false', 'value'=>'IntlCalendar|DateTime|array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int}|array{tm_sec: int, tm_min: int, tm_hour: int, tm_mday: int, tm_mon: int, tm_year: int, tm_wday: int, tm_yday: int, tm_isdst: int}|string|int|float'],
|
|
'new' => ['string|false', 'value'=>'IntlCalendar|DateTimeInterface|array{0: int, 1: int, 2: int, 3: int, 4: int, 5: int, 6: int, 7: int, 8: int}|array{tm_sec: int, tm_min: int, tm_hour: int, tm_mday: int, tm_mon: int, tm_year: int, tm_wday: int, tm_yday: int, tm_isdst: int}|string|int|float'],
|
|
],
|
|
'SQLite3::createFunction' => [
|
|
'old' => ['bool', 'name'=>'string', 'callback'=>'callable', 'argCount='=>'int'],
|
|
'new' => ['bool', 'name'=>'string', 'callback'=>'callable', 'argCount='=>'int', 'flags='=>'int'],
|
|
],
|
|
'get_headers' => [
|
|
'old' => ['array|false', 'url'=>'string', 'associative='=>'int'],
|
|
'new' => ['array|false', 'url'=>'string', 'associative='=>'int', 'context='=>'?resource'],
|
|
],
|
|
'getopt' => [
|
|
'old' => ['array<string,string|false|list<string|false>>|false', 'short_options'=>'string', 'long_options='=>'array'],
|
|
'new' => ['array<string,string|false|list<string|false>>|false', 'short_options'=>'string', 'long_options='=>'array', '&w_rest_index='=>'int'],
|
|
],
|
|
'pg_fetch_all' => [
|
|
'old' => ['array<array>', 'result'=>'resource'],
|
|
'new' => ['array<array>', 'result'=>'resource', 'mode='=>'int'],
|
|
],
|
|
'pg_select' => [
|
|
'old' => ['string|array|false', 'connection'=>'resource', 'table_name'=>'string', 'conditions'=>'array', 'flags='=>'int'],
|
|
'new' => ['string|array|false', 'connection'=>'resource', 'table_name'=>'string', 'conditions'=>'array', 'flags='=>'int', 'mode='=>'int'],
|
|
],
|
|
'timezone_identifiers_list' => [
|
|
'old' => ['list<string>|false', 'timezoneGroup='=>'int', 'countryCode='=>'string'],
|
|
'new' => ['list<string>|false', 'timezoneGroup='=>'int', 'countryCode='=>'?string'],
|
|
],
|
|
'unpack' => [
|
|
'old' => ['array', 'format'=>'string', 'string'=>'string'],
|
|
'new' => ['array|false', 'format'=>'string', 'string'=>'string', 'offset='=>'int'],
|
|
],
|
|
],
|
|
'removed' => [
|
|
],
|
|
];
|