Use full namespaces

More inline with the rest of the phpdocs (and correct when in namespace)
This commit is contained in:
Barry
2013-03-29 14:39:05 +01:00
parent 14813b77b1
commit 4b8597aa75
@@ -132,10 +132,10 @@ class GeneratorCommand extends Command {
$output .= "namespace $namespace {\n";
if($sublime){
$output .= " class $alias extends $root{\n";
$output .= " class $alias extends \\$root{\n";
}else{
$output .= " class $alias{\n";
$output .= "\t/**\n\t * @var $root \$root\n\t */\n\t static private \$root;\n\n";
$output .= "\t/**\n\t * @var \\$root \$root\n\t */\n\t static private \$root;\n\n";
}
$methods = $d->getMethods();