Esempio n. 1
0
 public function offsetSet($index, $value)
 {
     $value->href = $this->appendCdn($value->href);
     parent::offsetSet($index, $value);
 }
Esempio n. 2
0
 public function testOffsetSetThrowsExceptionWithoutArrayArgument()
 {
     $this->setExpectedException('Zend\\View\\Exception\\ExceptionInterface');
     $this->helper->offsetSet(1, 'foo');
 }