1<?php 2 3namespace DeepCopy\f001; 4 5class B extends A 6{ 7 private $bProp; 8 9 public function getBProp() 10 { 11 return $this->bProp; 12 } 13 14 public function setBProp($prop) 15 { 16 $this->bProp = $prop; 17 18 return $this; 19 } 20} 21