Files
2021-04-07 19:25:18 -04:00

10 lines
104 B
PHP

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