Skip to content

Commit 2485376

Browse files
authored
Fixed syntax error (#4544)
1 parent e91b2dd commit 2485376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appendices/migration70/incompatible/error-handling.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function handler(Exception $e) { /* ... */ }
5454
set_exception_handler('handler');
5555
5656
// PHP 5 and 7 compatible.
57-
function handler($e) { ... }
57+
function handler($e) { /* ... */ }
5858
5959
// PHP 7 only.
6060
function handler(Throwable $e) { /* ... */ }

0 commit comments

Comments
 (0)