10 lines
104 B
PHP
Raw Permalink Normal View History

2024-02-18 17:01:52 +08:00
<?php
interface Stringable
{
/**
* @return string
*/
public function __toString();
}