class GetCamelizedDummy 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\GetCamelizedDummy
Hierarchy
- class \Symfony\Component\Serializer\Tests\Normalizer\GetCamelizedDummy
Expanded class hierarchy of GetCamelizedDummy
File
- vendor/
symfony/ serializer/ Tests/ Normalizer/ GetSetMethodNormalizerTest.php, line 730
Namespace
Symfony\Component\Serializer\Tests\NormalizerView source
class GetCamelizedDummy {
private $kevinDunglas;
private $fooBar;
private $bar_foo;
public function __construct($kevinDunglas = null) {
$this->kevinDunglas = $kevinDunglas;
}
public function getKevinDunglas() {
return $this->kevinDunglas;
}
public function setFooBar($fooBar) {
$this->fooBar = $fooBar;
}
public function getFooBar() {
return $this->fooBar;
}
public function setBar_foo($bar_foo) {
$this->bar_foo = $bar_foo;
}
public function getBar_foo() {
return $this->bar_foo;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
GetCamelizedDummy:: |
private | property | ||
GetCamelizedDummy:: |
private | property | ||
GetCamelizedDummy:: |
private | property | ||
GetCamelizedDummy:: |
public | function | ||
GetCamelizedDummy:: |
public | function | ||
GetCamelizedDummy:: |
public | function | ||
GetCamelizedDummy:: |
public | function | ||
GetCamelizedDummy:: |
public | function | ||
GetCamelizedDummy:: |
public | function |