You are here

class PropertyConstructorDummy 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\PropertyConstructorDummy

Hierarchy

Expanded class hierarchy of PropertyConstructorDummy

File

vendor/symfony/serializer/Tests/Normalizer/PropertyNormalizerTest.php, line 461

Namespace

Symfony\Component\Serializer\Tests\Normalizer
View source
class PropertyConstructorDummy {
  protected $foo;
  private $bar;
  public function __construct($foo, $bar) {
    $this->foo = $foo;
    $this->bar = $bar;
  }
  public function getFoo() {
    return $this->foo;
  }
  public function getBar() {
    return $this->bar;
  }

}

Members