Skip to content

Commit

Permalink
Merge pull request #228 from mollie/add-create-client-endpoint
Browse files Browse the repository at this point in the history
add client link endpoint
  • Loading branch information
Naoray authored Jun 27, 2023
2 parents 6bc5110 + 0da4103 commit b5bdf91
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
],
"require": {
"php": "^8.0",
"mollie/mollie-api-php": "^2.55",
"mollie/mollie-api-php": "v2.58.0-beta",
"illuminate/support": "^9.0|^10.0",
"ext-json": "*"
},
Expand Down
8 changes: 8 additions & 0 deletions src/Wrappers/MollieApiWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,14 @@ public function clients()
return $this->client->clients;
}

/**
* @return \Mollie\Api\Endpoints\ClientLinkEndpoint
*/
public function clientLinks()
{
return $this->client->clientLinks;
}

/**
* @return \Mollie\Api\Endpoints\OrganizationPartnerEndpoint
*/
Expand Down
1 change: 1 addition & 0 deletions tests/Wrappers/MollieApiWrapperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ class MollieApiWrapperTest extends TestCase
'terminals',
'wallets',
'clients',
'clientLinks',
'organizationPartners',
];

Expand Down

0 comments on commit b5bdf91

Please sign in to comment.