summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2003-02-26 08:27:14 +0000
committerSebastian Bergmann <sebastian@php.net>2003-02-26 08:27:14 +0000
commit189d29061e0f4f3231fbd1c8884bf0191ecdaa9f (patch)
tree0bd4f21c52f169b65dc908472d7a499b6dea4646
parent2c1b3b74b24c4dd466d4928f81631b37a6a35dec (diff)
downloadphp-git-189d29061e0f4f3231fbd1c8884bf0191ecdaa9f.tar.gz
Syntactic sugar is sweet.
-rw-r--r--Zend/ZEND_CHANGES5
1 files changed, 5 insertions, 0 deletions
diff --git a/Zend/ZEND_CHANGES b/Zend/ZEND_CHANGES
index 4c8f791aa3..0c2420afc7 100644
--- a/Zend/ZEND_CHANGES
+++ b/Zend/ZEND_CHANGES
@@ -175,6 +175,11 @@ Changes in the Zend Engine 2.0
Foo::$aVariable = 'someValue';
?>
+ A namespace's name may contain colons to denote "sub-namespaces".
+ This is pure syntactic sugar, the Zend Engine will not see, for
+ instance, the namespaces "Package", "Package:Subpackage" and
+ "Package:Subpackage:Subsubpackage" as related.
+
To avoid ambiguities in the '::' resolution there may be no
global class and namespace with the same name.