PHP-Code in namespaces/02_step/Apachenland/User.class.php

<?php
namespace Apachenland;

class User {
	function woBinIch() {
		$str = "Hallo, ich bin ein Indianer in einer Klasse.<br>";
        $str .= "Ich wohne im Namespace ";
        $str .= __namespace__;

        return $str;
	}
}	
?>