관리-도구
편집 파일: PayPalEnvironment.php
<?php namespace PayPalCheckoutSdk\Core; use PayPalHttp\Environment; abstract class PayPalEnvironment implements Environment { private $clientId; private $clientSecret; public function __construct($clientId, $clientSecret) { $this->clientId = $clientId; $this->clientSecret = $clientSecret; } public function authorizationString() { return base64_encode($this->clientId . ":" . $this->clientSecret); } }