Files
t404null/vendor/myclabs/deep-copy/fixtures/f006/B.php
Glitch (t404null) 25e7853992 Fixed twitter link
2022-06-25 11:33:59 +00: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;
}
}