Files
huangjingfen/pro_v3.5.1/vendor/myclabs/php-enum/stubs/Stringable.php
panchengyong 7acbf45ff7 new files
2026-03-07 22:29:07 +08:00

12 lines
200 B
PHP

<?php
if (\PHP_VERSION_ID < 80000 && !interface_exists('Stringable')) {
interface Stringable
{
/**
* @return string
*/
public function __toString();
}
}