class GroupDummyParent in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/serializer/Tests/Fixtures/GroupDummyParent.php \Symfony\Component\Serializer\Tests\Fixtures\GroupDummyParent
@author Kévin Dunglas <dunglas@gmail.com>
Hierarchy
- class \Symfony\Component\Serializer\Tests\Fixtures\GroupDummyParent
Expanded class hierarchy of GroupDummyParent
File
- vendor/
symfony/ serializer/ Tests/ Fixtures/ GroupDummyParent.php, line 19
Namespace
Symfony\Component\Serializer\Tests\FixturesView source
class GroupDummyParent {
/**
* @Groups({"a"})
*/
private $kevin;
private $coopTilleuls;
public function setKevin($kevin) {
$this->kevin = $kevin;
}
public function getKevin() {
return $this->kevin;
}
public function setCoopTilleuls($coopTilleuls) {
$this->coopTilleuls = $coopTilleuls;
}
/**
* @Groups({"a", "b"})
*/
public function getCoopTilleuls() {
return $this->coopTilleuls;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
GroupDummyParent:: |
private | property | ||
GroupDummyParent:: |
private | property | Plugin annotation @Groups({"a"}) | |
GroupDummyParent:: |
public | function | Plugin annotation @Groups({"a", "b"}) | |
GroupDummyParent:: |
public | function | ||
GroupDummyParent:: |
public | function | ||
GroupDummyParent:: |
public | function |