ParentDoNotSkipWithEmptyChild.php 307 B

1234567891011121314151617181920
  1. <?php
  2. namespace JMS\Serializer\Tests\Fixtures;
  3. class ParentDoNotSkipWithEmptyChild
  4. {
  5. private $c = 'c';
  6. private $d = 'd';
  7. /**
  8. * @var InlineChild
  9. */
  10. private $child;
  11. public function __construct($child = null)
  12. {
  13. $this->child = $child ?: new InlineChild();
  14. }
  15. }