mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-02-28 15:10:54 +03:00
66 lines
1.5 KiB
PHP
66 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Cache\Storage;
|
|
|
|
use ArrayObject;
|
|
use Zend\EventManager\Event as BaseEvent;
|
|
|
|
class Event extends BaseEvent
|
|
{
|
|
/**
|
|
* Constructor
|
|
*
|
|
* Accept a storage adapter and its parameters.
|
|
*
|
|
* @param string $name Event name
|
|
* @param StorageInterface $storage
|
|
* @param ArrayObject $params
|
|
*/
|
|
public function __construct($name, StorageInterface $storage, ArrayObject $params)
|
|
{
|
|
parent::__construct($name, $storage, $params);
|
|
}
|
|
|
|
/**
|
|
* Set the event target/context
|
|
*
|
|
* @param StorageInterface $target
|
|
* @return Event
|
|
* @see Zend\EventManager\Event::setTarget()
|
|
*/
|
|
public function setTarget($target)
|
|
{
|
|
return $this->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();
|
|
}
|
|
}
|