📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-30 00:02:35
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
tests
/
Core
/
Tokenizers
/
PHP
✏️
Editing: FinallyTest.inc
<?php try { // Do something. } catch(Exception $e) { // Do something. } /* testTryCatchFinally */ finally { // Do something. } /* testTryFinallyCatch */ try { // Do something. } finally { // Do something. } catch(Exception $e) { // Do something. } /* testTryFinally */ try { // Do something. } FINALLY { // Do something. } class FinallyAsMethod { /* testFinallyUsedAsClassConstantName */ const FINALLY = 'foo'; /* testFinallyUsedAsMethodName */ public function finally() { // Do something. /* testFinallyUsedAsPropertyName */ $this->finally = 'foo'; } }
💾 Save Changes
❌ Cancel