10 lines
104 B
PHP
Raw Normal View History

<?php
interface Stringable
{
/**
* @return string
*/
public function __toString();
}