You are here

class PropertySiblingHolder in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/serializer/Tests/Fixtures/PropertySiblingHolder.php \Symfony\Component\Serializer\Tests\Fixtures\PropertySiblingHolder

@author Kévin Dunglas <dunglas@gmail.com>

Hierarchy

Expanded class hierarchy of PropertySiblingHolder

1 file declares its use of PropertySiblingHolder
PropertyNormalizerTest.php in vendor/symfony/serializer/Tests/Normalizer/PropertyNormalizerTest.php

File

vendor/symfony/serializer/Tests/Fixtures/PropertySiblingHolder.php, line 17

Namespace

Symfony\Component\Serializer\Tests\Fixtures
View source
class PropertySiblingHolder {
  public $sibling0;
  public $sibling1;
  public $sibling2;
  public function __construct() {
    $sibling = new PropertySibling();
    $this->sibling0 = $sibling;
    $this->sibling1 = $sibling;
    $this->sibling2 = $sibling;
  }

}

Members