0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.116.24.148


Current Path : /var/www/html/univadmin/vendor/myclabs/deep-copy/fixtures/f003/
Upload File :
Current File : /var/www/html/univadmin/vendor/myclabs/deep-copy/fixtures/f003/Foo.php

<?php

namespace DeepCopy\f003;

class Foo
{
    private $name;
    private $prop;

    public function __construct($name)
    {
        $this->name = $name;
    }

    public function getProp()
    {
        return $this->prop;
    }

    public function setProp($prop)
    {
        $this->prop = $prop;

        return $this;
    }
}