summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/internal_func_info_static_method.phpt
blob: df4e9b2aab626797b5bca8698032889149e34764 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Internal static methods should not be confused with global functions
--SKIPIF--
<?php
if (!extension_loaded('zend-test')) die('skip requires zend-test');
?>
--FILE--
<?php

var_dump(is_bool(_ZendTestClass::is_object()));

?>
--EXPECT--
bool(false)