mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2025-01-10 14:48:33 +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 {
|
||
|
}
|