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