From fe1e808afc3aada5c5311192570eaf76a50a118e Mon Sep 17 00:00:00 2001 From: Craig Potter Date: Thu, 15 Jun 2023 00:25:18 +0100 Subject: [PATCH] Update README.md --- .github/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/README.md b/.github/README.md index 187c529..e4f64fc 100644 --- a/.github/README.md +++ b/.github/README.md @@ -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 @@ -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