From 70528785e7893febe9d28127ac5142e09f50d1e0 Mon Sep 17 00:00:00 2001 From: Christoph Michael Becker Date: Thu, 13 Aug 2020 13:04:25 +0000 Subject: [PATCH] Fix #77948: Wrong Namespaces FAQ item interpretation/explanation git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350306 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/namespaces.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/namespaces.xml b/language/namespaces.xml index 58c65ed608..5b8e835c15 100644 --- a/language/namespaces.xml +++ b/language/namespaces.xml @@ -1132,7 +1132,7 @@ A\B::foo(); // calls method "foo" of class "B" from namespace "A\A" - Import names cannot conflict with + Import names must not conflict with classes defined in the same file. @@ -1401,7 +1401,7 @@ $b = INI_ALL; // sets $b to value of global constant "INI_ALL" - Import names cannot conflict with classes defined in the same file. + Import names must not conflict with classes defined in the same file. The following script combinations are legal: