mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fix doc bug #54363 (Namespaces: incorrect documentation example explanation).
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@309629 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
960c78d495
commit
e5430e16c1
1 changed files with 1 additions and 1 deletions
|
@ -995,7 +995,7 @@ D::foo(); // using import rules, calls method "foo" of class "D" defined in na
|
|||
A\B::foo(); // calls method "foo" of class "B" from namespace "A\A"
|
||||
// if class "A\A\B" not found, it tries to autoload class "A\A\B"
|
||||
|
||||
\A\B::foo(); // calls method "foo" of class "B" from namespace "A\B"
|
||||
\A\B::foo(); // calls method "foo" of class "B" from namespace "A"
|
||||
// if class "A\B" not found, it tries to autoload class "A\B"
|
||||
?>
|
||||
]]>
|
||||
|
|
Loading…
Reference in a new issue