You are here

class SiblingHolder in Zircon Profile 8

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

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

Hierarchy

  • class \Symfony\Component\Serializer\Tests\Fixtures\SiblingHolder

Expanded class hierarchy of SiblingHolder

2 files declare their use of SiblingHolder
GetSetMethodNormalizerTest.php in vendor/symfony/serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php
ObjectNormalizerTest.php in vendor/symfony/serializer/Tests/Normalizer/ObjectNormalizerTest.php

File

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

Namespace

Symfony\Component\Serializer\Tests\Fixtures
View source
class SiblingHolder {
  private $sibling0;
  private $sibling1;
  private $sibling2;
  public function __construct() {
    $sibling = new Sibling();
    $this->sibling0 = $sibling;
    $this->sibling1 = $sibling;
    $this->sibling2 = $sibling;
  }
  public function getSibling0() {
    return $this->sibling0;
  }
  public function getSibling1() {
    return $this->sibling1;
  }
  public function getSibling2() {
    return $this->sibling2;
  }

}

Members