Skip to content

Commit

Permalink
Merge pull request #15 from alexminza/master
Browse files Browse the repository at this point in the history
Update RequestInterface.php
  • Loading branch information
keriat authored Nov 26, 2019
2 parents d181c2f + 7470418 commit d42f943
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/VictoriaBank/RequestInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ interface RequestInterface
/**
* RequestInterface constructor.
*
* @param array $requestParams
* @param bool $debugMode
* @param array $requestParams
* @param string $gatewayUrl
* @param bool $debugMode
* @param bool $sslVerify
*/
public function __construct(array $requestParams, $gatewayUrl, $debugMode = false);
public function __construct(array $requestParams, $gatewayUrl, $debugMode = false, $sslVerify = true);

/**
* @param bool $debugMode
Expand All @@ -24,6 +26,13 @@ public function __construct(array $requestParams, $gatewayUrl, $debugMode = fals
*/
public function setDebugMode($debugMode);

/**
* @param boolean $sslVerify
*
* @return $this
*/
public function setSslVerify($sslVerify);

/**
* @param string $gatewayUrl
*
Expand Down

0 comments on commit d42f943

Please sign in to comment.