Skip to content

Commit

Permalink
Merge pull request #3 from craigpotter/craigpotter-patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
craigpotter committed Jun 14, 2023
2 parents 6a7613a + fe1e808 commit 1433bd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ $fca = new Fca('my.email@dev.test', 'my-api-key');

// 12345 is the FCA firm reference number

$response = $fa->firm(12345)->get(); // Returns a Saloon response object
$response = $fca->firm(12345)->get(); // Returns a Saloon response object

$firm = $response->dto(); // Returns a Firm DTO
$firm->frn; // 12345
Expand All @@ -100,7 +100,7 @@ $fca = new Fca('my.email@dev.test', 'my-api-key');

// 12345 is the FCA firm reference number

$paginatedData = $fa->firm(12345)->individuals(); // Returns a Saloon response object
$paginatedData = $fca->firm(12345)->individuals(); // Returns a Saloon response object

$paginatedData->totalPages(); // Returns the total number of pages
$paginatedData->totalResults(); // Returns the total number of results
Expand Down

0 comments on commit 1433bd7

Please sign in to comment.