From ffdccb83d460791202bdb258dbb9106da877da3b Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Sat, 5 Apr 2014 11:58:12 +0200 Subject: implemented static properties as requested in issue #58 --- include/modifiers.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include/modifiers.h') diff --git a/include/modifiers.h b/include/modifiers.h index a838341..e52bd14 100644 --- a/include/modifiers.h +++ b/include/modifiers.h @@ -16,6 +16,7 @@ namespace Php { /** * The modifiers are constants */ +extern const int Static; extern const int Abstract; extern const int Final; extern const int Public; @@ -23,6 +24,12 @@ extern const int Protected; extern const int Private; extern const int Const; +/** + * Modifiers that are supported for methods and properties + */ +extern const int MethodModifiers; +extern const int PropertyModifiers; + /** * End namespace */ -- cgit v1.2.3