aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WebAssembly/Execution/StackOverflowException.php
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-04-03 01:43:04 +0900
committernsfisis <nsfisis@gmail.com>2025-04-03 01:45:03 +0900
commit6233331f23603ebab0a7aa626ff82d71426b3bd6 (patch)
tree490affe4d44e251c996502847c2d87ed9d8cab17 /src/WebAssembly/Execution/StackOverflowException.php
parent44655d7a70ee5fd288f691a41631e8a6471d084d (diff)
downloadphp-waddiwasi-6233331f23603ebab0a7aa626ff82d71426b3bd6.tar.gz
php-waddiwasi-6233331f23603ebab0a7aa626ff82d71426b3bd6.tar.zst
php-waddiwasi-6233331f23603ebab0a7aa626ff82d71426b3bd6.zip
feat: update php and package version
Diffstat (limited to 'src/WebAssembly/Execution/StackOverflowException.php')
-rw-r--r--src/WebAssembly/Execution/StackOverflowException.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WebAssembly/Execution/StackOverflowException.php b/src/WebAssembly/Execution/StackOverflowException.php
index c5ff3a4..4a18aa7 100644
--- a/src/WebAssembly/Execution/StackOverflowException.php
+++ b/src/WebAssembly/Execution/StackOverflowException.php
@@ -12,7 +12,7 @@ final class StackOverflowException extends RuntimeException
public function __construct(
string $message = 'Stack overflow',
int $code = 0,
- Throwable $previous = null,
+ ?Throwable $previous = null,
) {
parent::__construct($message, $code, $previous);
}