Files
2025-11-11 14:49:30 +01:00

10 lines
104 B
PHP

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