FooToString.php 151 B

1234567891011
  1. <?php
  2. namespace Sonata\AdminBundle\Tests\Fixtures\Entity;
  3. class FooToString
  4. {
  5. public function __toString()
  6. {
  7. return 'salut';
  8. }
  9. }