A.php 240 B

1234567891011121314151617181920
  1. <?php
  2. namespace DeepCopy\f001;
  3. class A
  4. {
  5. private $aProp;
  6. public function getAProp()
  7. {
  8. return $this->aProp;
  9. }
  10. public function setAProp($prop)
  11. {
  12. $this->aProp = $prop;
  13. return $this;
  14. }
  15. }