Skip to content

Commit

Permalink
Merge pull request #147 from ticketevolution/fix-deployment-issue-in-…
Browse files Browse the repository at this point in the history
…harvester

Fix issue with deploying TEvo Harvester
  • Loading branch information
jwcobb authored Jan 2, 2019
2 parents 33428bb + 6eb406b commit 779294d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 4.1.1 (January 2, 2019)
- Fix an issue with deploying [/jwcobb/tevo-harvester](https://github.com/jwcobb/tevo-harvester) by removing typehints in `__constructor()` of `TEvoAuthMiddleware`.

## 4.1.0 (February 20, 2018)
- Added `/v10/orders` endpoint for `createOrders()`.

Expand Down
2 changes: 1 addition & 1 deletion src/TEvoAuthMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class TEvoAuthMiddleware
* @param string $apiToken
* @param string $apiSecret
*/
public function __construct(string $apiToken, string $apiSecret)
public function __construct($apiToken, $apiSecret)
{
$this->apiToken = $apiToken;
$this->apiSecret = $apiSecret;
Expand Down

0 comments on commit 779294d

Please sign in to comment.