File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ Polyfills are provided for:
65
65
- the ` ldap_connect_wallet ` function introduced in PHP 8.3;
66
66
- the ` stream_context_set_options ` function introduced in PHP 8.3;
67
67
- the ` Date*Exception/Error ` classes introduced in PHP 8.3;
68
+ - the ` SQLite3Exception ` class introduced in PHP 8.3;
68
69
69
70
It is strongly recommended to upgrade your PHP version and/or install the missing
70
71
extensions whenever possible. This polyfill should be used only when there is no
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ This component provides features added to PHP 8.3 core:
10
10
- [ ` ldap_connect_wallet ` ] ( https://wiki.php.net/rfc/deprecate_functions_with_overloaded_signatures )
11
11
- [ ` stream_context_set_options ` ] ( https://wiki.php.net/rfc/deprecate_functions_with_overloaded_signatures )
12
12
- [ ` Date*Exception/Error classes ` ] ( https://wiki.php.net/rfc/datetime-exceptions )
13
+ - [ ` SQLite3Exception ` ] ( https://wiki.php.net/rfc/sqlite3_exceptions )
13
14
14
15
More information can be found in the
15
16
[ main Polyfill README] ( https://github.com/symfony/polyfill/blob/main/README.md ) .
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of the Symfony package.
5
+ *
6
+ * (c) Fabien Potencier <fabien@symfony.com>
7
+ *
8
+ * For the full copyright and license information, please view the LICENSE
9
+ * file that was distributed with this source code.
10
+ */
11
+
12
+ if (\PHP_VERSION_ID < 80300 ) {
13
+ class SQLite3Exception extends Exception
14
+ {
15
+ }
16
+ }
You can’t perform that action at this time.
0 commit comments