1<?php
2
3namespace DeepCopy\f008;
4
5class A
6{
7    private $foo;
8
9    public function __construct($foo)
10    {
11        $this->foo = $foo;
12    }
13
14    public function getFoo()
15    {
16        return $this->foo;
17    }
18}
19