php-8.0.30-src/Zend/tests/interface_with_tostring.phpt

19 lines
276 B
PHP

--TEST--
Interface with __toString() method
--FILE--
<?php
interface MyStringable {
public function __toString(): string;
}
$rc = new ReflectionClass(MyStringable::class);
var_dump($rc->getInterfaceNames());
?>
--EXPECT--
array(1) {
[0]=>
string(10) "Stringable"
}