/var/www/hkosl.com/nick/codeigniter/application/vendor/myclabs/deep-copy/fixtures/f008/A.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace DeepCopy\f008;

class 
A
{
    private 
$foo;

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

    public function 
getFoo()
    {
        return 
$this->foo;
    }
}