You are here

class PropertyDummy in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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\Normalizer
View 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