No Description

Stringable.php 165B

123456789101112
  1. <?php
  2. if (\PHP_VERSION_ID < 80000) {
  3. interface Stringable
  4. {
  5. /**
  6. * @return string
  7. */
  8. public function __toString();
  9. }
  10. }