diff options
| author | Guilherme Blanco <guilhermeblanco@hotmail.com> | 2014-11-22 04:57:55 +0000 |
|---|---|---|
| committer | Julien Pauli <jpauli@php.net> | 2014-12-12 17:29:54 +0100 |
| commit | 094d409b3d34c51f49e0121e5ccfe8b2a717aaf6 (patch) | |
| tree | db03022fa8f4eda77977af84c45bcc0eb33d9fa0 /Zend/zend_language_parser.y | |
| parent | 5ad01e1d33fc669608f09cc55e0db373b89a7546 (diff) | |
| download | php-git-094d409b3d34c51f49e0121e5ccfe8b2a717aaf6.tar.gz | |
Removed ZEND_ACC_FINAL_CLASS which is unnecessary. This also fixed some currently defined classes as final which were just not being considered as such before.
Diffstat (limited to 'Zend/zend_language_parser.y')
| -rw-r--r-- | Zend/zend_language_parser.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_language_parser.y b/Zend/zend_language_parser.y index 94734defe2..4d66648055 100644 --- a/Zend/zend_language_parser.y +++ b/Zend/zend_language_parser.y @@ -435,7 +435,7 @@ class_declaration_statement: class_type: T_CLASS { $$ = 0; } | T_ABSTRACT T_CLASS { $$ = ZEND_ACC_EXPLICIT_ABSTRACT_CLASS; } - | T_FINAL T_CLASS { $$ = ZEND_ACC_FINAL_CLASS; } + | T_FINAL T_CLASS { $$ = ZEND_ACC_FINAL; } | T_TRAIT { $$ = ZEND_ACC_TRAIT; } ; |
