summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/is_callable_variation1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/general_functions/is_callable_variation1.phpt')
-rw-r--r--ext/standard/tests/general_functions/is_callable_variation1.phpt9
1 files changed, 0 insertions, 9 deletions
diff --git a/ext/standard/tests/general_functions/is_callable_variation1.phpt b/ext/standard/tests/general_functions/is_callable_variation1.phpt
index 52da80951b..d217767cce 100644
--- a/ext/standard/tests/general_functions/is_callable_variation1.phpt
+++ b/ext/standard/tests/general_functions/is_callable_variation1.phpt
@@ -2,15 +2,6 @@
Test is_callable() function : usage variations - undefined functions
--FILE--
<?php
-/* Prototype: bool is_callable ( mixed $var [, bool $syntax_only [, string &$callable_name]] );
- Description: Verify that the contents of a variable can be called as a function
- In case of objects, $var = array($SomeObject, 'MethodName')
-*/
-
-/* Prototype: void check_iscallable( $functions );
- Description: use iscallable() on given string to check for valid function name
- returns true if valid function name, false otherwise
-*/
function check_iscallable( $functions ) {
$counter = 1;
foreach($functions as $func) {