stringable_internal_class.phpt 294 B

1234567891011121314
  1. --TEST--
  2. Stringable should be automatically implemented for internal classes
  3. --EXTENSIONS--
  4. zend_test
  5. --FILE--
  6. <?php
  7. // _ZendTestClass defines __toString() but does not explicitly implement Stringable.
  8. $obj = new _ZendTestClass;
  9. var_dump($obj instanceof Stringable);
  10. ?>
  11. --EXPECT--
  12. bool(true)