9 lines
101 B
PHP
Executable File

<?php
class StringableClass
{
public function __toString()
{
return '12345';
}
}