Files
faveo/vendor/myclabs/php-enum/stubs/Stringable.php
RafficMohammed da241bacb6 updated-packages
2023-01-08 00:13:22 +05:30

12 lines
200 B
PHP

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