| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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;
- }
- }
|