Example #1
0
 /**
  * @inheritdoc
  */
 public function block($name, $title = '')
 {
     $block = new Block($name, $title);
     $block->setParent($this);
     $this->children()->add($block);
     return $block;
 }