summaryrefslogtreecommitdiff
path: root/include/type.h
diff options
context:
space:
mode:
authorToon Schoenmakers <toon.schoenmakers@copernica.com>2014-09-25 11:04:09 +0200
committerToon Schoenmakers <toon.schoenmakers@copernica.com>2014-09-25 11:04:09 +0200
commit3ddc5c9e3777fff5c17f74902bb5ddc7cdaf1eb1 (patch)
treedd6cd8934be41455576f06b79742041974559af6 /include/type.h
parent700a574000d8f5cfdd407a0a4b634ad7fcadc54f (diff)
Made Type::Null the default type on ByVal and ByRef as this will allow any type (aka no type hinting)
Diffstat (limited to 'include/type.h')
-rw-r--r--include/type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/type.h b/include/type.h
index bec0fd5..d248455 100644
--- a/include/type.h
+++ b/include/type.h
@@ -18,7 +18,7 @@ namespace Php {
* The values are the same as the ones used internally in Zend
*/
enum class Type : unsigned char {
- Null = 0,
+ Null = 0, // Null will allow any type
Numeric = 1,
Float = 2,
Bool = 3,