From 97d98c61c4ba8b5e6739cbc6b143a8b849611140 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Thu, 27 Dec 2007 02:48:32 +0000 Subject: [PATCH] Missing colon (#43636 by Jakub) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@249122 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/var/functions/is-callable.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/var/functions/is-callable.xml b/reference/var/functions/is-callable.xml index 6e4c578739..45c6b7f720 100644 --- a/reference/var/functions/is-callable.xml +++ b/reference/var/functions/is-callable.xml @@ -1,5 +1,5 @@ - + is_callable @@ -56,7 +56,7 @@ Receives the "callable name". In the example below it is - "someClass:someMethod". Note, however, that despite the implication + "someClass::someMethod". Note, however, that despite the implication that someClass::SomeMethod() is a callable static method, this is not the case. @@ -117,7 +117,7 @@ $methodVariable = array($anObject, 'someMethod'); var_dump(is_callable($methodVariable, true, $callable_name)); // bool(true) -echo $callable_name, "\n"; // someClass:someMethod +echo $callable_name, "\n"; // someClass::someMethod ?> ]]>