Skip to content

Commit

Permalink
getters for config added
Browse files Browse the repository at this point in the history
  • Loading branch information
aahmetgaliev committed Sep 25, 2019
1 parent 45d0c44 commit dfc7698
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/CorreosConnector/CorreosConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -271,4 +271,20 @@ public function checkMethodException($response)
throw new CorreosException($response->BultoError->DescError);
}
}

/**
* @return CorreosConfig
*/
public function getCorreosConfig(): CorreosConfig
{
return $this->correosConfig;
}

/**
* @return SenderUnitedIdentity
*/
public function getSenderUnitedIdentity(): SenderUnitedIdentity
{
return $this->senderUnitedIdentity;
}
}

0 comments on commit dfc7698

Please sign in to comment.