Skip to content

Commit

Permalink
Fixing formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ursuleacv committed Apr 5, 2016
1 parent 5344592 commit 7bd1644
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Provider/MerchantOS.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function __construct(AccessToken $token, $accountId)
*/
public function getSale($saleId)
{
$params = ['oauth_token' => $this->oauthToken, 'load_relations' => 'all', 'orderby'=>'saleLineID', 'orderby_desc'=>1];
$params = ['oauth_token' => $this->oauthToken, 'load_relations' => 'all', 'orderby' => 'saleLineID', 'orderby_desc' => 1];
$response = $this->makeAPICall('Account.Sale', 'GET', $saleId, $params, null);

if (isset($response['Sale']) && $this->itemsCount($response) > 0) {
Expand Down Expand Up @@ -72,7 +72,7 @@ public function updateSale($saleId, $saleData)
* @param int $limit
* @return mixed
*/
public function getSaleLine($saleId, $extra=[])
public function getSaleLine($saleId, $extra = [])
{
$params = ['oauth_token' => $this->oauthToken];

Expand Down

0 comments on commit 7bd1644

Please sign in to comment.