setStorage($target); } /** * Alias of setTarget * * @param StorageInterface $storage * @return Event * @see Zend\EventManager\Event::setTarget() */ public function setStorage(StorageInterface $storage) { $this->target = $storage; return $this; } /** * Alias of getTarget * * @return StorageInterface */ public function getStorage() { return $this->getTarget(); } }