Skip to content

Commit

Permalink
add trigger back
Browse files Browse the repository at this point in the history
  • Loading branch information
haddowg committed Jun 14, 2015
1 parent a84b394 commit 4eb0751
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Omnipay/Realex/Message/RemoteAbstractResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,24 @@ abstract class RemoteAbstractResponse extends AbstractResponse implements Redire
{
protected $xml;

protected $trigger;

/**
* @return mixed
*/
public function getTrigger()
{
return $this->trigger;
}

/**
* @param mixed $trigger
*/
public function setTrigger($trigger)
{
$this->trigger = $trigger;
}

public function __construct(RequestInterface $request, $data)
{
parent::__construct($request, $data);
Expand Down

0 comments on commit 4eb0751

Please sign in to comment.