1<?php 2 3namespace DeepCopy\f005; 4 5class Foo 6{ 7 public $cloned = false; 8 9 public function __clone() 10 { 11 $this->cloned = true; 12 } 13} 14