Skip to content

Commit 70487fe

Browse files
committed
added options
1 parent a9a24da commit 70487fe

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/Rules/Deprecations/CallWithDeprecatedIniOptionRule.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,34 @@ class CallWithDeprecatedIniOptionRule implements Rule
3131
];
3232

3333
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+
3455
'assert.active' => 80300,
3556
'assert.exception' => 80300,
3657
'assert.bail' => 80300,
3758
'assert.warning' => 80300,
59+
60+
'session.sid_length' => 80400,
61+
'session.sid_bits_per_character' => 80400,
3862
];
3963

4064
private ReflectionProvider $reflectionProvider;

0 commit comments

Comments
 (0)