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