<?php namespace nur\b\impl; class One { function __construct() { $this->two = new Two(); } private $two; function f() { $this->two->f(); } }