Gittern\Entity\GitObject\Node\BaseNode::getName PHP 메소드

getName() 공개 메소드

public getName ( )
    public function getName()
    {
        return $this->name;
    }

Usage Example

예제 #1
0
파일: Tree.php 프로젝트: e-butik/gittern
 /**
  * @author Magnus Nordlander
  **/
 public function addNode(Node\BaseNode $node)
 {
     $this->nodes[$node->getName()] = $node;
     uksort($this->nodes, 'strcmp');
 }