FooToStringNull.php 211 B

123456789101112
  1. <?php
  2. namespace Sonata\AdminBundle\Tests\Fixtures\Entity;
  3. class FooToStringNull
  4. {
  5. // In case __toString returns an attribute not yet set
  6. public function __toString()
  7. {
  8. return null;
  9. }
  10. }