class PropertyDummy in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/serializer/Tests/Normalizer/PropertyNormalizerTest.php \Symfony\Component\Serializer\Tests\Normalizer\PropertyDummy
Hierarchy
- class \Symfony\Component\Serializer\Tests\Normalizer\PropertyDummy
Expanded class hierarchy of PropertyDummy
File
- vendor/
symfony/ serializer/ Tests/ Normalizer/ PropertyNormalizerTest.php, line 434
Namespace
Symfony\Component\Serializer\Tests\NormalizerView source
class PropertyDummy {
public $foo;
private $bar;
protected $camelCase;
public function getBar() {
return $this->bar;
}
public function setBar($bar) {
$this->bar = $bar;
}
public function getCamelCase() {
return $this->camelCase;
}
public function setCamelCase($camelCase) {
$this->camelCase = $camelCase;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PropertyDummy:: |
private | property | ||
PropertyDummy:: |
protected | property | ||
PropertyDummy:: |
public | property | ||
PropertyDummy:: |
public | function | ||
PropertyDummy:: |
public | function | ||
PropertyDummy:: |
public | function | ||
PropertyDummy:: |
public | function |