From a5fc026ab807d0b0b56d07582df73315b7fd02a6 Mon Sep 17 00:00:00 2001 From: Daniel Convissor Date: Sat, 7 Jun 2008 19:41:23 +0000 Subject: [PATCH] * $name in __callStatic() now case sensitive. Fixed by bug 45089. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@260894 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop5/overloading.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/language/oop5/overloading.xml b/language/oop5/overloading.xml index e2e5d50d49..1306d3f49b 100644 --- a/language/oop5/overloading.xml +++ b/language/oop5/overloading.xml @@ -1,5 +1,5 @@ - + Overloading @@ -277,7 +277,7 @@ class MethodTest { /** As of PHP 5.3.0 */ public static function __callStatic($name, $arguments) { - // Note: value of $name is converted to lower case. + // Note: value of $name is case sensitive. echo "Calling static method '$name' " . implode(', ', $arguments). "\n"; } @@ -294,7 +294,7 @@ MethodTest::runTest('in static context'); // As of PHP 5.3.0