From 5d373ffd672ea63e87b83471c572e87c089e4e72 Mon Sep 17 00:00:00 2001 From: Greg Sherwood Date: Wed, 20 Mar 2013 15:26:12 +1100 Subject: [PATCH] Even though T_FINALLY isn't in the docs yet, and the finally keyword is not listed on the PHP manual page, it exists in PHP5.5 and so should end up in the keyword list eventually. --- .../Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CodeSniffer/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php b/CodeSniffer/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php index badb814d56..13083ce365 100644 --- a/CodeSniffer/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php +++ b/CodeSniffer/Standards/Generic/Sniffs/PHP/LowerCaseKeywordSniff.php @@ -66,6 +66,7 @@ public function register() T_EXIT, T_EXTENDS, T_FINAL, + T_FINALLY, T_FOR, T_FOREACH, T_FUNCTION,