| Current File : /home/jvzmxxx/wiki1/vendor/ruflin/elastica/lib/Elastica/Bulk/Response.php |
<?php
namespace Elastica\Bulk;
use Elastica\Response as BaseResponse;
class Response extends BaseResponse
{
/**
* @var \Elastica\Bulk\Action
*/
protected $_action;
/**
* @var string
*/
protected $_opType;
/**
* @param array|string $responseData
* @param \Elastica\Bulk\Action $action
* @param string $opType
*/
public function __construct($responseData, Action $action, $opType)
{
parent::__construct($responseData);
$this->_action = $action;
$this->_opType = $opType;
}
/**
* @return \Elastica\Bulk\Action
*/
public function getAction()
{
return $this->_action;
}
/**
* @return string
*/
public function getOpType()
{
return $this->_opType;
}
}