mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-03 09:47:59 +01:00
18 lines
139 B
Plaintext
18 lines
139 B
Plaintext
tryCatch without variable
|
|
-----
|
|
<?php
|
|
|
|
try {
|
|
|
|
} catch (Exception) {
|
|
|
|
} finally {
|
|
|
|
}
|
|
-----
|
|
!!php7
|
|
try {
|
|
} catch (Exception) {
|
|
} finally {
|
|
}
|