StringableClass.php 101 Bytes
Newer Older
jhon committed
1 2 3 4 5 6 7 8
<?php
class StringableClass
{
    public function __toString()
    {
        return '12345';
    }
}