コード例 #1
0
ファイル: ClassBuilder.php プロジェクト: finalclass/nbml
 public function getNamespaceDeclaration()
 {
     $ns = $this->reflection->getNamespace();
     if ($ns) {
         return 'namespace ' . $this->reflection->getNamespace() . ';';
     }
     return '';
 }