1<?php
2
3namespace DeepCopy\f006;
4
5class B
6{
7    public $cloned = false;
8    private $bProp;
9
10    public function getBProp()
11    {
12        return $this->bProp;
13    }
14
15    public function setBProp($prop)
16    {
17        $this->bProp = $prop;
18
19        return $this;
20    }
21
22    public function __clone()
23    {
24        $this->cloned = true;
25    }
26}
27