<?php namespace Something; class X{} class Y{} class Z{} namespace Somewhere; use Something; class A { public $x; public function __construct() { $this->x = new Something\X(); } } $a = new A(); var_dump($a->x);
You have javascript disabled. You will not be able to edit any code.