Ejemplo n.º 1
0
 /**
  * @see \SplObserver::update()
  */
 public function update(\SplSubject $subject)
 {
     $this->callback->__invoke($subject);
 }
Ejemplo n.º 2
0
 /**
  * 
  * @see IteratorIterator::current()
  */
 public function current()
 {
     return $this->callback->__invoke(parent::current());
 }