コード例 #1
0
ファイル: HeadLink.php プロジェクト: hoangpt/nextcms
 public function prepend($value)
 {
     $value->href = $this->appendCdn($value->href);
     parent::prepend($value);
 }
コード例 #2
0
ファイル: HeadLinkTest.php プロジェクト: pnaq57/zf2demo
 public function testPrependThrowsExceptionWithoutArrayArgument()
 {
     $this->setExpectedException('Zend\\View\\Exception\\ExceptionInterface');
     $this->helper->prepend('foo');
 }