Skip to content

Commit

Permalink
Fixes CS.
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Aug 14, 2019
1 parent eb24b4d commit 7c04a40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/One/Place.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ class Place extends Request
/**
* Query places by latitude and longitude.
*
* @param float $latitude
* @param float $longitude
* @param float $latitude
* @param float $longitude
*
* @return \Katsana\Sdk\Response
*/
Expand All @@ -22,7 +22,7 @@ public function query($latitude, $longitude): Response
$query = Query::with('latitude', $latitude)->with('longitude', $longitude);

return $this->send(
'GET', "places", $this->getApiHeaders(), $this->buildHttpQuery($query)
'GET', 'places', $this->getApiHeaders(), $this->buildHttpQuery($query)
);
}
}

0 comments on commit 7c04a40

Please sign in to comment.