summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/internal_func_info_static_method.phpt
blob: 1a189b00a810abfba6ae075a4875be685d183b2c (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)