ObjectWithNullProperty.php 186 B

12345678910
  1. <?php
  2. namespace JMS\Serializer\Tests\Fixtures;
  3. use JMS\Serializer\Tests\Fixtures\SimpleObject;
  4. class ObjectWithNullProperty extends SimpleObject
  5. {
  6. private $nullProperty = null;
  7. }