class GroupDummy in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/serializer/Tests/Fixtures/GroupDummy.php \Symfony\Component\Serializer\Tests\Fixtures\GroupDummy
@author Kévin Dunglas <dunglas@gmail.com>
Hierarchy
- class \Symfony\Component\Serializer\Tests\Fixtures\GroupDummyParent
- class \Symfony\Component\Serializer\Tests\Fixtures\GroupDummy implements GroupDummyInterface
Expanded class hierarchy of GroupDummy
3 files declare their use of GroupDummy
- GetSetMethodNormalizerTest.php in vendor/
symfony/ serializer/ Tests/ Normalizer/ GetSetMethodNormalizerTest.php - ObjectNormalizerTest.php in vendor/
symfony/ serializer/ Tests/ Normalizer/ ObjectNormalizerTest.php - PropertyNormalizerTest.php in vendor/
symfony/ serializer/ Tests/ Normalizer/ PropertyNormalizerTest.php
File
- vendor/
symfony/ serializer/ Tests/ Fixtures/ GroupDummy.php, line 19
Namespace
Symfony\Component\Serializer\Tests\FixturesView source
class GroupDummy extends GroupDummyParent implements GroupDummyInterface {
/**
* @Groups({"a"})
*/
private $foo;
/**
* @Groups({"b", "c", "name_converter"})
*/
protected $bar;
private $fooBar;
private $symfony;
/**
* @Groups({"b"})
*/
public function setBar($bar) {
$this->bar = $bar;
}
/**
* @Groups({"c"})
*/
public function getBar() {
return $this->bar;
}
public function setFoo($foo) {
$this->foo = $foo;
}
public function getFoo() {
return $this->foo;
}
public function setFooBar($fooBar) {
$this->fooBar = $fooBar;
}
/**
* @Groups({"a", "b", "name_converter"})
*/
public function isFooBar() {
return $this->fooBar;
}
public function setSymfony($symfony) {
$this->symfony = $symfony;
}
public function getSymfony() {
return $this->symfony;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
GroupDummy:: |
protected | property | Plugin annotation @Groups({"b", "c", "name_converter"}) | |
GroupDummy:: |
private | property | Plugin annotation @Groups({"a"}) | |
GroupDummy:: |
private | property | ||
GroupDummy:: |
private | property | ||
GroupDummy:: |
public | function | Plugin annotation @Groups({"c"}) | |
GroupDummy:: |
public | function | ||
GroupDummy:: |
public | function |
Plugin annotation
@Groups({"a", "name_converter"}) Overrides GroupDummyInterface:: |
|
GroupDummy:: |
public | function | Plugin annotation @Groups({"a", "b", "name_converter"}) | |
GroupDummy:: |
public | function | Plugin annotation @Groups({"b"}) | |
GroupDummy:: |
public | function | ||
GroupDummy:: |
public | function | ||
GroupDummy:: |
public | function | ||
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 |