Skip to content

Commit a082637

Browse files
committed
Updated Rector to commit e2c8fc0e63931d1806f07c87cb0c3e98dc210ffa
rectorphp/rector-src@e2c8fc0 [Php85] Add missing url about openssl_pkey_derive arg deprecation (#7141)
1 parent 56e5036 commit a082637

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

config/set/php85.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
return static function (RectorConfig $rectorConfig) : void {
1818
$rectorConfig->rules([ArrayFirstLastRector::class, RemoveFinfoBufferContextArgRector::class, NullDebugInfoReturnRector::class]);
1919
$rectorConfig->ruleWithConfiguration(RemoveFuncCallArgRector::class, [
20+
// https://wiki.php.net/rfc/deprecations_php_8_5#deprecate_key_length_parameter_of_openssl_pkey_derive
2021
new RemoveFuncCallArg('openssl_pkey_derive', 2),
2122
// https://wiki.php.net/rfc/deprecations_php_8_5#deprecate_the_exclude_disabled_parameter_of_get_defined_functions
2223
new RemoveFuncCallArg('get_defined_functions', 0),

src/Application/VersionResolver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ final class VersionResolver
1919
* @api
2020
* @var string
2121
*/
22-
public const PACKAGE_VERSION = '8971177f378f71f6d986c57b3bc665b6957e7b18';
22+
public const PACKAGE_VERSION = 'e2c8fc0e63931d1806f07c87cb0c3e98dc210ffa';
2323
/**
2424
* @api
2525
* @var string
2626
*/
27-
public const RELEASE_DATE = '2025-08-11 20:07:39';
27+
public const RELEASE_DATE = '2025-08-11 23:00:48';
2828
/**
2929
* @var int
3030
*/

0 commit comments

Comments
 (0)