Skip to content

Commit

Permalink
Adopt my.mollie.com
Browse files Browse the repository at this point in the history
  • Loading branch information
sandervanhooft committed Aug 15, 2024
1 parent 8ce2ca8 commit b9f2b2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Provider/Mollie.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Mollie extends AbstractProvider
*
* @const string
*/
const MOLLIE_WEB_URL = 'https://www.mollie.com';
const MOLLIE_WEB_URL = 'https://my.mollie.com';

/**
* The prefix for the Client ID
Expand Down
2 changes: 1 addition & 1 deletion tests/src/Provider/MollieTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function testAuthorizationUrl()
list($url, $queryString) = explode('?', $authUrl);
parse_str($queryString, $query);

$this->assertEquals('https://www.mollie.com/oauth2/authorize', $url);
$this->assertEquals('https://my.mollie.com/oauth2/authorize', $url);
$this->assertEquals([
'state' => $this->provider->getState(),
'client_id' => self::MOCK_CLIENT_ID,
Expand Down

0 comments on commit b9f2b2e

Please sign in to comment.