capitalized class name to match definition (fixes #70412)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@337714 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Christoph Michael Becker 2015-09-02 21:19:05 +00:00
parent ba9c10d8e2
commit 586c9b218c

View file

@ -178,7 +178,7 @@ class Foo extends Bar
}
}
$myFoo = new foo();
$myFoo = new Foo();
$myFoo->test(); // Bar::testPrivate
// Foo::testPublic
?>