Mercurial > hg > isophonics-drupal-site
view vendor/myclabs/deep-copy/fixtures/f002/A.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 1fec387a4317 |
children |
line wrap: on
line source
<?php namespace DeepCopy\f002; class A { private $prop1; private $prop2; public function getProp1() { return $this->prop1; } public function setProp1($prop) { $this->prop1 = $prop; return $this; } public function getProp2() { return $this->prop2; } public function setProp2($prop) { $this->prop2 = $prop; return $this; } }