Files
pgserver3.0/pgserver/vendor/myclabs/deep-copy/fixtures/f006/B.php
annnj-company 130c1026c4 first commit
2026-04-17 18:29:53 +08:00

27 lines
341 B
PHP

<?php
namespace DeepCopy\f006;
class B
{
public $cloned = false;
private $bProp;
public function getBProp()
{
return $this->bProp;
}
public function setBProp($prop)
{
$this->bProp = $prop;
return $this;
}
public function __clone()
{
$this->cloned = true;
}
}