You are here

class GroupDummyParent in Zircon Profile 8

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

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

Hierarchy

Expanded class hierarchy of GroupDummyParent

File

vendor/symfony/serializer/Tests/Fixtures/GroupDummyParent.php, line 19

Namespace

Symfony\Component\Serializer\Tests\Fixtures
View 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

Namesort descending Modifiers Type Description Overrides
GroupDummyParent::$coopTilleuls private property
GroupDummyParent::$kevin private property Plugin annotation @Groups({"a"})
GroupDummyParent::getCoopTilleuls public function Plugin annotation @Groups({"a", "b"})
GroupDummyParent::getKevin public function
GroupDummyParent::setCoopTilleuls public function
GroupDummyParent::setKevin public function