We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9a24da commit 70487feCopy full SHA for 70487fe
src/Rules/Deprecations/CallWithDeprecatedIniOptionRule.php
@@ -31,10 +31,34 @@ class CallWithDeprecatedIniOptionRule implements Rule
31
];
32
33
private const DEPRECATED_OPTIONS = [
34
+ // deprecated since unknown version
35
+ 'mbstring.http_input' => 0,
36
+ 'mbstring.http_output' => 0,
37
+ 'mbstring.internal_encoding' => 0,
38
+ 'pdo_odbc.db2_instance_name' => 0,
39
+ 'enable_dl' => 0,
40
+
41
+ 'mbstring.func_overload' => 70200,
42
+ 'track_errors' => 70200,
43
44
+ 'iconv.input_encoding' => 50600,
45
+ 'iconv.output_encoding' => 50600,
46
+ 'iconv.internal_encoding' => 50600,
47
48
+ 'allow_url_include' => 70400,
49
50
+ 'assert.quiet_eval' => 80000,
51
52
+ 'filter.default' => 80100,
53
+ 'oci8.old_oci_close_semantics' => 80100,
54
55
'assert.active' => 80300,
56
'assert.exception' => 80300,
57
'assert.bail' => 80300,
58
'assert.warning' => 80300,
59
60
+ 'session.sid_length' => 80400,
61
+ 'session.sid_bits_per_character' => 80400,
62
63
64
private ReflectionProvider $reflectionProvider;
0 commit comments