Skip to content

Commit

Permalink
Moved properties before constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiago Cordeiro committed Oct 23, 2019
1 parent ca64dc3 commit 9a4e730
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/Provider/Mollie.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@ class Mollie extends AbstractProvider
const SCOPE_ONBOARDING_READ = 'onboarding.read';
const SCOPE_ONBOARDING_WRITE = 'onboarding.write';

/**
* @var string
*/
private $mollieApiUrl;

/**
* @var string
*/
private $mollieWebUrl;

public function __construct(array $options = [], array $collaborators = [])
{
if (isset($options["clientId"]) && strpos($options["clientId"], self::CLIENT_ID_PREFIX) !== 0) {
Expand All @@ -76,16 +86,6 @@ public function __construct(array $options = [], array $collaborators = [])
parent::__construct($options, $collaborators);
}

/**
* @var string
*/
private $mollieApiUrl;

/**
* @var string
*/
private $mollieWebUrl;

/**
* Returns the base URL for authorizing a client.
*
Expand Down

0 comments on commit 9a4e730

Please sign in to comment.