1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php namespace PayPalCheckoutSdk\Core; class SandboxEnvironment extends PayPalEnvironment { public function __construct($clientId, $clientSecret) { parent::__construct($clientId, $clientSecret); } public function baseUrl() { return "https://api.sandbox.paypal.com"; } }