コード例 #1
0
ファイル: Element.php プロジェクト: kevintweber/groundskeeper
 /**
  * Required by ContainsChildren interface.
  */
 public function prependChild(Token $token)
 {
     $token->setParent($this);
     array_unshift($this->children, $token);
     return $this;
 }