1<?php 2 3namespace DeepCopy\f003; 4 5class Foo 6{ 7 private $name; 8 private $prop; 9 10 public function __construct($name) 11 { 12 $this->name = $name; 13 } 14 15 public function getProp() 16 { 17 return $this->prop; 18 } 19 20 public function setProp($prop) 21 { 22 $this->prop = $prop; 23 24 return $this; 25 } 26}