Files
c-cms-legacy/vendor/myclabs/deep-copy/fixtures/f001/A.php
Mathieu Lagace 5fa3c85b97 Include Vendor
2018-06-27 20:31:54 -04: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;
}
}