BiFace_Server_Lite/vendor/myclabs/deep-copy/fixtures/f001/A.php
2020-03-27 10:13:51 +07:00

21 lines
240 B
PHP

<?php
namespace DeepCopy\f001;
class A
{
private $aProp;
public function getAProp()
{
return $this->aProp;
}
public function setAProp($prop)
{
$this->aProp = $prop;
return $this;
}
}