class PropertySiblingHolder in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/serializer/Tests/Fixtures/PropertySiblingHolder.php \Symfony\Component\Serializer\Tests\Fixtures\PropertySiblingHolder
@author Kévin Dunglas <dunglas@gmail.com>
Hierarchy
- class \Symfony\Component\Serializer\Tests\Fixtures\PropertySiblingHolder
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\FixturesView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PropertySiblingHolder:: |
public | property | ||
PropertySiblingHolder:: |
public | property | ||
PropertySiblingHolder:: |
public | property | ||
PropertySiblingHolder:: |
public | function |