Skip to content

Commit

Permalink
resolving 404 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JustSteveKing committed May 7, 2021
1 parent 26abacf commit 12f5666
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public function searchCompany(
): Search|RequestException {
return $this->search(
query: $query,
prefix: 'companies',
prefix: '/companies',
perPage: $perPage,
startIndex: $startIndex,
);
Expand All @@ -166,7 +166,7 @@ public function searchOfficers(
): Search|RequestException {
return $this->search(
query: $query,
prefix: 'officers',
prefix: '/officers',
perPage: $perPage,
startIndex: $startIndex,
);
Expand All @@ -190,7 +190,7 @@ public function searchDisqualifiedOfficers(
): Search|RequestException {
return $this->search(
query: $query,
prefix: 'disqualified-officers',
prefix: '/disqualified-officers',
perPage: $perPage,
startIndex: $startIndex,
);
Expand Down

0 comments on commit 12f5666

Please # to comment.