Skip to content

Commit

Permalink
refactor: use getters
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrildewit committed Feb 1, 2021
1 parent 0dacc94 commit 61a92ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Actions/SearchAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class SearchAction extends AbstractAction
public function getParameters(): array
{
return [
'query' => $this->query,
'query_place_id' => $this->queryPlaceId,
'query' => $this->getQuery(),
'query_place_id' => $this->getQueryPlaceId(),
];
}

Expand Down

0 comments on commit 61a92ad

Please sign in to comment.