summaryrefslogtreecommitdiff
path: root/include/modifiers.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/modifiers.h')
-rw-r--r--include/modifiers.h7
1 files changed, 7 insertions, 0 deletions
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;
@@ -24,6 +25,12 @@ 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
*/
}