ObjectWithToString.php 257 B

123456789101112131415161718
  1. <?php
  2. namespace JMS\Serializer\Tests\Fixtures;
  3. class ObjectWithToString
  4. {
  5. private $input;
  6. public function __construct($input)
  7. {
  8. $this->input = $input;
  9. }
  10. public function __toString()
  11. {
  12. return $this->input;
  13. }
  14. }