コード例 #1
0
ファイル: OpenGraph.php プロジェクト: arcanedev/head
 /**
  * Update the title
  *
  * @param  Title $title
  *
  * @return self
  */
 public function update(Title $title)
 {
     $this->setTitle($title->getTitle())->setSiteName($title->getSiteName());
     return $this;
 }
コード例 #2
0
ファイル: Head.php プロジェクト: arcanedev/head
 /**
  * Get Site name
  *
  * @return string
  */
 public function getSiteName()
 {
     return $this->title->getSiteName();
 }