You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I figured out that setting the api to testmode can be done by adding the $clientUrl to the ClientConfig constructor. Works fine, but as a user of the package I really don't care about the urls, I just want to enable or disable testmode.
I see two solutions to this enhancement:
1: You're doing such a great job putting everything in constants, let's put these url's in constants as well, so I can grab them when needed.
2: My favourite and it extends solution 1: Change the constructor in ClientConfig and replace the $clientUrl parameter with $testMode. The $testMode boolean will decide witch of the two urls to use.
The text was updated successfully, but these errors were encountered:
Hi,
I figured out that setting the api to testmode can be done by adding the $clientUrl to the ClientConfig constructor. Works fine, but as a user of the package I really don't care about the urls, I just want to enable or disable testmode.
I see two solutions to this enhancement:
1: You're doing such a great job putting everything in constants, let's put these url's in constants as well, so I can grab them when needed.
2: My favourite and it extends solution 1: Change the constructor in ClientConfig and replace the $clientUrl parameter with $testMode. The $testMode boolean will decide witch of the two urls to use.
The text was updated successfully, but these errors were encountered: