class GetSetDummy in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php \Symfony\Component\Serializer\Tests\Normalizer\GetSetDummy
Hierarchy
- class \Symfony\Component\Serializer\Tests\Normalizer\GetSetDummy
Expanded class hierarchy of GetSetDummy
File
- vendor/
symfony/ serializer/ Tests/ Normalizer/ GetSetMethodNormalizerTest.php, line 562
Namespace
Symfony\Component\Serializer\Tests\NormalizerView source
class GetSetDummy {
protected $foo;
private $bar;
private $baz;
protected $camelCase;
protected $object;
public function getFoo() {
return $this->foo;
}
public function setFoo($foo) {
$this->foo = $foo;
}
public function getBar() {
return $this->bar;
}
public function setBar($bar) {
$this->bar = $bar;
}
public function isBaz() {
return $this->baz;
}
public function setBaz($baz) {
$this->baz = $baz;
}
public function getFooBar() {
return $this->foo . $this->bar;
}
public function getCamelCase() {
return $this->camelCase;
}
public function setCamelCase($camelCase) {
$this->camelCase = $camelCase;
}
public function otherMethod() {
throw new \RuntimeException('Dummy::otherMethod() should not be called');
}
public function setObject($object) {
$this->object = $object;
}
public function getObject() {
return $this->object;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
GetSetDummy:: |
private | property | ||
GetSetDummy:: |
private | property | ||
GetSetDummy:: |
protected | property | ||
GetSetDummy:: |
protected | property | ||
GetSetDummy:: |
protected | property | ||
GetSetDummy:: |
public | function | ||
GetSetDummy:: |
public | function | ||
GetSetDummy:: |
public | function | ||
GetSetDummy:: |
public | function | ||
GetSetDummy:: |
public | function | ||
GetSetDummy:: |
public | function | ||
GetSetDummy:: |
public | function | ||
GetSetDummy:: |
public | function | ||
GetSetDummy:: |
public | function | ||
GetSetDummy:: |
public | function | ||
GetSetDummy:: |
public | function | ||
GetSetDummy:: |
public | function |