Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
georgegg committed Feb 21, 2018
1 parent e4031da commit 2965e62
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/Adyen/Service/Modification.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Modification extends \Adyen\Service
protected $_cancelOrRefund;
protected $_capture;
protected $_refund;
protected $_adjustAthorisation;
protected $_adjustAuthorisation;

public function __construct(\Adyen\Client $client)
{
Expand All @@ -19,7 +19,7 @@ public function __construct(\Adyen\Client $client)
$this->_cancelOrRefund = new \Adyen\Service\ResourceModel\Modification\CancelOrRefund($this);
$this->_capture = new \Adyen\Service\ResourceModel\Modification\Capture($this);
$this->_refund = new \Adyen\Service\ResourceModel\Modification\Refund($this);
$this->_adjustAthorisation = new \Adyen\Service\ResourceModel\Modification\AdjustAuthorisation($this);
$this->_adjustAuthorisation = new \Adyen\Service\ResourceModel\Modification\AdjustAuthorisation($this);
}

public function cancel($params)
Expand Down Expand Up @@ -48,8 +48,7 @@ public function refund($params)

public function adjustAuthorisation($params)
{
$result = $this->_adjustAthorisation->request($params);
$result = $this->_adjustAuthorisation->request($params);
return $result;
}

}

0 comments on commit 2965e62

Please sign in to comment.