You are here

class GetCamelizedDummy in Zircon Profile 8

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

Hierarchy

Expanded class hierarchy of GetCamelizedDummy

File

vendor/symfony/serializer/Tests/Normalizer/GetSetMethodNormalizerTest.php, line 730

Namespace

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