コード例 #1
0
ファイル: BasicClass.php プロジェクト: RapotOR/PhpCoder
 public function addFunction(ClassFunction $function)
 {
     if ($function->getFunctionName()) {
         $this->functions[$function->getFunctionName()] = $function;
     }
     return $this;
 }