MAJ Module Paypal vers 5.1.1 (comme en prod)

This commit is contained in:
2020-02-14 19:42:46 +01:00
parent 188923c03c
commit f00f4207dd
137 changed files with 12999 additions and 5036 deletions

View File

@@ -4,4 +4,4 @@
require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit80c4cc856b12233631c411b9f5edcebd::getLoader();
return ComposerAutoloaderInit9e3de0f5fa28c53609761907f94c17da::getLoader();

View File

@@ -55,6 +55,7 @@ class ClassLoader
private $classMap = array();
private $classMapAuthoritative = false;
private $missingClasses = array();
private $apcuPrefix;
public function getPrefixes()
{
@@ -271,6 +272,26 @@ class ClassLoader
return $this->classMapAuthoritative;
}
/**
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
*
* @param string|null $apcuPrefix
*/
public function setApcuPrefix($apcuPrefix)
{
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
}
/**
* The APCu prefix in use, or null if APCu caching is not enabled.
*
* @return string|null
*/
public function getApcuPrefix()
{
return $this->apcuPrefix;
}
/**
* Registers this instance as an autoloader.
*
@@ -313,11 +334,6 @@ class ClassLoader
*/
public function findFile($class)
{
// work around for PHP 5.3.0 - 5.3.2 https://bugs.php.net/50731
if ('\\' == $class[0]) {
$class = substr($class, 1);
}
// class map lookup
if (isset($this->classMap[$class])) {
return $this->classMap[$class];
@@ -325,6 +341,12 @@ class ClassLoader
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
return false;
}
if (null !== $this->apcuPrefix) {
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
if ($hit) {
return $file;
}
}
$file = $this->findFileWithExtension($class, '.php');
@@ -333,6 +355,10 @@ class ClassLoader
$file = $this->findFileWithExtension($class, '.hh');
}
if (null !== $this->apcuPrefix) {
apcu_add($this->apcuPrefix.$class, $file);
}
if (false === $file) {
// Remember that this class does not exist.
$this->missingClasses[$class] = true;
@@ -348,10 +374,14 @@ class ClassLoader
$first = $class[0];
if (isset($this->prefixLengthsPsr4[$first])) {
foreach ($this->prefixLengthsPsr4[$first] as $prefix => $length) {
if (0 === strpos($class, $prefix)) {
foreach ($this->prefixDirsPsr4[$prefix] as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
$subPath = $class;
while (false !== $lastPos = strrpos($subPath, '\\')) {
$subPath = substr($subPath, 0, $lastPos);
$search = $subPath . '\\';
if (isset($this->prefixDirsPsr4[$search])) {
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
foreach ($this->prefixDirsPsr4[$search] as $dir) {
if (file_exists($file = $dir . $pathEnd)) {
return $file;
}
}

View File

@@ -1,56 +1,21 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Composer
Upstream-Contact: Jordi Boggiano <j.boggiano@seld.be>
Source: https://github.com/composer/composer
Files: *
Copyright: 2016, Nils Adermann <naderman@naderman.de>
2016, Jordi Boggiano <j.boggiano@seld.be>
License: Expat
Copyright (c) Nils Adermann, Jordi Boggiano
Files: src/Composer/Util/TlsHelper.php
Copyright: 2016, Nils Adermann <naderman@naderman.de>
2016, Jordi Boggiano <j.boggiano@seld.be>
2013, Evan Coury <me@evancoury.com>
License: Expat and BSD-2-Clause
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
License: BSD-2-Clause
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
.
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
License: Expat
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@@ -6,4 +6,621 @@ $vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
'PayPal\\Api\\Address' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Address.php',
'PayPal\\Api\\Agreement' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Agreement.php',
'PayPal\\Api\\AgreementDetails' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementDetails.php',
'PayPal\\Api\\AgreementStateDescriptor' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementStateDescriptor.php',
'PayPal\\Api\\AgreementTransaction' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementTransaction.php',
'PayPal\\Api\\AgreementTransactions' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementTransactions.php',
'PayPal\\Api\\AlternatePayment' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/AlternatePayment.php',
'PayPal\\Api\\Amount' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Amount.php',
'PayPal\\Api\\Authorization' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Authorization.php',
'PayPal\\Api\\BankAccount' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/BankAccount.php',
'PayPal\\Api\\BankAccountsList' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/BankAccountsList.php',
'PayPal\\Api\\BankToken' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/BankToken.php',
'PayPal\\Api\\BaseAddress' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/BaseAddress.php',
'PayPal\\Api\\Billing' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Billing.php',
'PayPal\\Api\\BillingAgreementToken' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/BillingAgreementToken.php',
'PayPal\\Api\\BillingInfo' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/BillingInfo.php',
'PayPal\\Api\\CancelNotification' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CancelNotification.php',
'PayPal\\Api\\Capture' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Capture.php',
'PayPal\\Api\\CarrierAccount' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CarrierAccount.php',
'PayPal\\Api\\CarrierAccountToken' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CarrierAccountToken.php',
'PayPal\\Api\\CartBase' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CartBase.php',
'PayPal\\Api\\ChargeModel' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ChargeModel.php',
'PayPal\\Api\\Cost' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Cost.php',
'PayPal\\Api\\CountryCode' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CountryCode.php',
'PayPal\\Api\\CreateProfileResponse' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CreateProfileResponse.php',
'PayPal\\Api\\Credit' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Credit.php',
'PayPal\\Api\\CreditCard' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCard.php',
'PayPal\\Api\\CreditCardHistory' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCardHistory.php',
'PayPal\\Api\\CreditCardList' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCardList.php',
'PayPal\\Api\\CreditCardToken' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCardToken.php',
'PayPal\\Api\\CreditFinancingOffered' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditFinancingOffered.php',
'PayPal\\Api\\Currency' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Currency.php',
'PayPal\\Api\\CurrencyConversion' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CurrencyConversion.php',
'PayPal\\Api\\CustomAmount' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CustomAmount.php',
'PayPal\\Api\\DetailedRefund' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/DetailedRefund.php',
'PayPal\\Api\\Details' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Details.php',
'PayPal\\Api\\Error' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Error.php',
'PayPal\\Api\\ErrorDetails' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ErrorDetails.php',
'PayPal\\Api\\ExtendedBankAccount' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ExtendedBankAccount.php',
'PayPal\\Api\\ExternalFunding' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ExternalFunding.php',
'PayPal\\Api\\FileAttachment' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FileAttachment.php',
'PayPal\\Api\\FlowConfig' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FlowConfig.php',
'PayPal\\Api\\FmfDetails' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FmfDetails.php',
'PayPal\\Api\\FundingDetail' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingDetail.php',
'PayPal\\Api\\FundingInstrument' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingInstrument.php',
'PayPal\\Api\\FundingOption' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingOption.php',
'PayPal\\Api\\FundingSource' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingSource.php',
'PayPal\\Api\\FuturePayment' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FuturePayment.php',
'PayPal\\Api\\HyperSchema' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/HyperSchema.php',
'PayPal\\Api\\Image' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Image.php',
'PayPal\\Api\\Incentive' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Incentive.php',
'PayPal\\Api\\InputFields' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InputFields.php',
'PayPal\\Api\\InstallmentInfo' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InstallmentInfo.php',
'PayPal\\Api\\InstallmentOption' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InstallmentOption.php',
'PayPal\\Api\\Invoice' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Invoice.php',
'PayPal\\Api\\InvoiceAddress' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceAddress.php',
'PayPal\\Api\\InvoiceItem' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceItem.php',
'PayPal\\Api\\InvoiceNumber' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceNumber.php',
'PayPal\\Api\\InvoiceSearchResponse' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceSearchResponse.php',
'PayPal\\Api\\Item' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Item.php',
'PayPal\\Api\\ItemList' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ItemList.php',
'PayPal\\Api\\Links' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Links.php',
'PayPal\\Api\\Measurement' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Measurement.php',
'PayPal\\Api\\MerchantInfo' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/MerchantInfo.php',
'PayPal\\Api\\MerchantPreferences' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/MerchantPreferences.php',
'PayPal\\Api\\Metadata' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Metadata.php',
'PayPal\\Api\\NameValuePair' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/NameValuePair.php',
'PayPal\\Api\\Notification' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Notification.php',
'PayPal\\Api\\OpenIdAddress' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdAddress.php',
'PayPal\\Api\\OpenIdError' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdError.php',
'PayPal\\Api\\OpenIdSession' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdSession.php',
'PayPal\\Api\\OpenIdTokeninfo' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdTokeninfo.php',
'PayPal\\Api\\OpenIdUserinfo' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdUserinfo.php',
'PayPal\\Api\\Order' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Order.php',
'PayPal\\Api\\OverrideChargeModel' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/OverrideChargeModel.php',
'PayPal\\Api\\Participant' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Participant.php',
'PayPal\\Api\\Patch' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Patch.php',
'PayPal\\Api\\PatchRequest' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PatchRequest.php',
'PayPal\\Api\\Payee' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Payee.php',
'PayPal\\Api\\Payer' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Payer.php',
'PayPal\\Api\\PayerInfo' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PayerInfo.php',
'PayPal\\Api\\Payment' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Payment.php',
'PayPal\\Api\\PaymentCard' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentCard.php',
'PayPal\\Api\\PaymentCardToken' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentCardToken.php',
'PayPal\\Api\\PaymentDefinition' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentDefinition.php',
'PayPal\\Api\\PaymentDetail' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentDetail.php',
'PayPal\\Api\\PaymentExecution' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentExecution.php',
'PayPal\\Api\\PaymentHistory' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentHistory.php',
'PayPal\\Api\\PaymentInstruction' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentInstruction.php',
'PayPal\\Api\\PaymentOptions' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentOptions.php',
'PayPal\\Api\\PaymentSummary' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentSummary.php',
'PayPal\\Api\\PaymentTerm' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentTerm.php',
'PayPal\\Api\\Payout' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Payout.php',
'PayPal\\Api\\PayoutBatch' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutBatch.php',
'PayPal\\Api\\PayoutBatchHeader' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutBatchHeader.php',
'PayPal\\Api\\PayoutItem' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutItem.php',
'PayPal\\Api\\PayoutItemDetails' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutItemDetails.php',
'PayPal\\Api\\PayoutSenderBatchHeader' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutSenderBatchHeader.php',
'PayPal\\Api\\Phone' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Phone.php',
'PayPal\\Api\\Plan' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Plan.php',
'PayPal\\Api\\PlanList' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PlanList.php',
'PayPal\\Api\\PotentialPayerInfo' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PotentialPayerInfo.php',
'PayPal\\Api\\Presentation' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Presentation.php',
'PayPal\\Api\\PrivateLabelCard' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PrivateLabelCard.php',
'PayPal\\Api\\ProcessorResponse' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ProcessorResponse.php',
'PayPal\\Api\\RecipientBankingInstruction' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/RecipientBankingInstruction.php',
'PayPal\\Api\\RedirectUrls' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/RedirectUrls.php',
'PayPal\\Api\\Refund' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Refund.php',
'PayPal\\Api\\RefundDetail' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/RefundDetail.php',
'PayPal\\Api\\RefundRequest' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/RefundRequest.php',
'PayPal\\Api\\RelatedResources' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/RelatedResources.php',
'PayPal\\Api\\Sale' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Sale.php',
'PayPal\\Api\\Search' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Search.php',
'PayPal\\Api\\ShippingAddress' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingAddress.php',
'PayPal\\Api\\ShippingCost' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingCost.php',
'PayPal\\Api\\ShippingInfo' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingInfo.php',
'PayPal\\Api\\Tax' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Tax.php',
'PayPal\\Api\\Template' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Template.php',
'PayPal\\Api\\TemplateData' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/TemplateData.php',
'PayPal\\Api\\TemplateSettings' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/TemplateSettings.php',
'PayPal\\Api\\TemplateSettingsMetadata' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/TemplateSettingsMetadata.php',
'PayPal\\Api\\Templates' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Templates.php',
'PayPal\\Api\\Terms' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Terms.php',
'PayPal\\Api\\Transaction' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Transaction.php',
'PayPal\\Api\\TransactionBase' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/TransactionBase.php',
'PayPal\\Api\\Transactions' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Transactions.php',
'PayPal\\Api\\VerifyWebhookSignature' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/VerifyWebhookSignature.php',
'PayPal\\Api\\VerifyWebhookSignatureResponse' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/VerifyWebhookSignatureResponse.php',
'PayPal\\Api\\WebProfile' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/WebProfile.php',
'PayPal\\Api\\Webhook' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Webhook.php',
'PayPal\\Api\\WebhookEvent' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEvent.php',
'PayPal\\Api\\WebhookEventList' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventList.php',
'PayPal\\Api\\WebhookEventType' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventType.php',
'PayPal\\Api\\WebhookEventTypeList' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventTypeList.php',
'PayPal\\Api\\WebhookList' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookList.php',
'PayPal\\Auth\\IPPCredential' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/IPPCredential.php',
'PayPal\\Auth\\IPPThirdPartyAuthorization' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/IPPThirdPartyAuthorization.php',
'PayPal\\Auth\\OAuthTokenCredential' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Auth/OAuthTokenCredential.php',
'PayPal\\Auth\\Oauth\\AuthSignature' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/AuthSignature.php',
'PayPal\\Auth\\Oauth\\MockOAuthDataStore' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/MockOAuthDataStore.php',
'PayPal\\Auth\\Oauth\\OAuthConsumer' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthConsumer.php',
'PayPal\\Auth\\Oauth\\OAuthDataStore' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthDataStore.php',
'PayPal\\Auth\\Oauth\\OAuthRequest' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthRequest.php',
'PayPal\\Auth\\Oauth\\OAuthServer' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthServer.php',
'PayPal\\Auth\\Oauth\\OAuthSignatureMethod' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthSignatureMethod.php',
'PayPal\\Auth\\Oauth\\OAuthSignatureMethodHmacSha1' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthSignatureMethodHmacSha1.php',
'PayPal\\Auth\\Oauth\\OAuthSignatureMethodPLAINTEXT' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthSignatureMethodPLAINTEXT.php',
'PayPal\\Auth\\Oauth\\OAuthSignatureMethodRsaSha1' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthSignatureMethodRsaSha1.php',
'PayPal\\Auth\\Oauth\\OAuthToken' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthToken.php',
'PayPal\\Auth\\Oauth\\OAuthUtil' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthUtil.php',
'PayPal\\Auth\\Openid\\PPOpenIdAddress' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Openid/PPOpenIdAddress.php',
'PayPal\\Auth\\Openid\\PPOpenIdError' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Openid/PPOpenIdError.php',
'PayPal\\Auth\\Openid\\PPOpenIdSession' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Openid/PPOpenIdSession.php',
'PayPal\\Auth\\Openid\\PPOpenIdTokeninfo' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Openid/PPOpenIdTokeninfo.php',
'PayPal\\Auth\\Openid\\PPOpenIdUserinfo' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/Openid/PPOpenIdUserinfo.php',
'PayPal\\Auth\\PPCertificateCredential' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/PPCertificateCredential.php',
'PayPal\\Auth\\PPSignatureCredential' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/PPSignatureCredential.php',
'PayPal\\Auth\\PPSubjectAuthorization' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/PPSubjectAuthorization.php',
'PayPal\\Auth\\PPTokenAuthorization' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Auth/PPTokenAuthorization.php',
'PayPal\\Cache\\AuthorizationCache' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Cache/AuthorizationCache.php',
'PayPal\\Common\\ArrayUtil' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Common/ArrayUtil.php',
'PayPal\\Common\\PPApiContext' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Common/PPApiContext.php',
'PayPal\\Common\\PPArrayUtil' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Common/PPArrayUtil.php',
'PayPal\\Common\\PPModel' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Common/PPModel.php',
'PayPal\\Common\\PPReflectionUtil' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Common/PPReflectionUtil.php',
'PayPal\\Common\\PPUserAgent' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Common/PPUserAgent.php',
'PayPal\\Common\\PayPalModel' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Common/PayPalModel.php',
'PayPal\\Common\\PayPalResourceModel' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Common/PayPalResourceModel.php',
'PayPal\\Common\\PayPalUserAgent' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Common/PayPalUserAgent.php',
'PayPal\\Common\\ReflectionUtil' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Common/ReflectionUtil.php',
'PayPal\\Converter\\FormatConverter' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Converter/FormatConverter.php',
'PayPal\\CoreComponentTypes\\BasicAmountType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/CoreComponentTypes/BasicAmountType.php',
'PayPal\\CoreComponentTypes\\MeasureType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/CoreComponentTypes/MeasureType.php',
'PayPal\\Core\\PPAPIService' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPAPIService.php',
'PayPal\\Core\\PPBaseService' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPBaseService.php',
'PayPal\\Core\\PPConfigManager' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPConfigManager.php',
'PayPal\\Core\\PPConnectionManager' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPConnectionManager.php',
'PayPal\\Core\\PPConstants' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPConstants.php',
'PayPal\\Core\\PPCredentialManager' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPCredentialManager.php',
'PayPal\\Core\\PPHttpConfig' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPHttpConfig.php',
'PayPal\\Core\\PPHttpConnection' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPHttpConnection.php',
'PayPal\\Core\\PPLoggingLevel' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPLoggingLevel.php',
'PayPal\\Core\\PPLoggingManager' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPLoggingManager.php',
'PayPal\\Core\\PPMessage' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPMessage.php',
'PayPal\\Core\\PPRequest' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPRequest.php',
'PayPal\\Core\\PPUtils' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPUtils.php',
'PayPal\\Core\\PPXmlFaultMessage' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPXmlFaultMessage.php',
'PayPal\\Core\\PPXmlMessage' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Core/PPXmlMessage.php',
'PayPal\\Core\\PayPalConfigManager' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalConfigManager.php',
'PayPal\\Core\\PayPalConstants' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalConstants.php',
'PayPal\\Core\\PayPalCredentialManager' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalCredentialManager.php',
'PayPal\\Core\\PayPalHttpConfig' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalHttpConfig.php',
'PayPal\\Core\\PayPalHttpConnection' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalHttpConnection.php',
'PayPal\\Core\\PayPalLoggingManager' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalLoggingManager.php',
'PayPal\\EBLBaseComponents\\APICredentialsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/APICredentialsType.php',
'PayPal\\EBLBaseComponents\\AbstractRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AbstractRequestType.php',
'PayPal\\EBLBaseComponents\\AbstractResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AbstractResponseType.php',
'PayPal\\EBLBaseComponents\\ActivationDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ActivationDetailsType.php',
'PayPal\\EBLBaseComponents\\AdditionalFeeType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AdditionalFeeType.php',
'PayPal\\EBLBaseComponents\\AddressType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AddressType.php',
'PayPal\\EBLBaseComponents\\AirlineItineraryType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AirlineItineraryType.php',
'PayPal\\EBLBaseComponents\\AuctionInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AuctionInfoType.php',
'PayPal\\EBLBaseComponents\\AuthorizationInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AuthorizationInfoType.php',
'PayPal\\EBLBaseComponents\\AuthorizationRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AuthorizationRequestType.php',
'PayPal\\EBLBaseComponents\\AuthorizationResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AuthorizationResponseType.php',
'PayPal\\EBLBaseComponents\\BAUpdateResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BAUpdateResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\BMLOfferInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BMLOfferInfoType.php',
'PayPal\\EBLBaseComponents\\BankAccountDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BankAccountDetailsType.php',
'PayPal\\EBLBaseComponents\\BillOutstandingAmountRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BillOutstandingAmountRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\BillOutstandingAmountResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BillOutstandingAmountResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\BillingAgreementDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BillingAgreementDetailsType.php',
'PayPal\\EBLBaseComponents\\BillingApprovalDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BillingApprovalDetailsType.php',
'PayPal\\EBLBaseComponents\\BillingPeriodDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BillingPeriodDetailsType.php',
'PayPal\\EBLBaseComponents\\BillingPeriodDetailsType_Update' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BillingPeriodDetailsType_Update.php',
'PayPal\\EBLBaseComponents\\BusinessInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BusinessInfoType.php',
'PayPal\\EBLBaseComponents\\BusinessOwnerInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BusinessOwnerInfoType.php',
'PayPal\\EBLBaseComponents\\ButtonSearchResultType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ButtonSearchResultType.php',
'PayPal\\EBLBaseComponents\\BuyerDetailType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BuyerDetailType.php',
'PayPal\\EBLBaseComponents\\BuyerDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BuyerDetailsType.php',
'PayPal\\EBLBaseComponents\\CoupledBucketsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CoupledBucketsType.php',
'PayPal\\EBLBaseComponents\\CoupledPaymentInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CoupledPaymentInfoType.php',
'PayPal\\EBLBaseComponents\\CreateMobilePaymentRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CreateMobilePaymentRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\CreateRecurringPaymentsProfileRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CreateRecurringPaymentsProfileRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\CreateRecurringPaymentsProfileResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CreateRecurringPaymentsProfileResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\CreditCardDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CreditCardDetailsType.php',
'PayPal\\EBLBaseComponents\\CreditCardNumberTypeType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CreditCardNumberTypeType.php',
'PayPal\\EBLBaseComponents\\DeviceDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DeviceDetailsType.php',
'PayPal\\EBLBaseComponents\\DiscountInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DiscountInfoType.php',
'PayPal\\EBLBaseComponents\\DiscountType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DiscountType.php',
'PayPal\\EBLBaseComponents\\DisplayControlDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DisplayControlDetailsType.php',
'PayPal\\EBLBaseComponents\\DoCaptureResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoCaptureResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\DoDirectPaymentRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoDirectPaymentRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\DoExpressCheckoutPaymentRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoExpressCheckoutPaymentRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\DoExpressCheckoutPaymentResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoExpressCheckoutPaymentResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\DoMobileCheckoutPaymentResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoMobileCheckoutPaymentResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\DoNonReferencedCreditRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoNonReferencedCreditRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\DoNonReferencedCreditResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoNonReferencedCreditResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\DoReferenceTransactionRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoReferenceTransactionRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\DoReferenceTransactionResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoReferenceTransactionResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\EbayItemPaymentDetailsItemType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/EbayItemPaymentDetailsItemType.php',
'PayPal\\EBLBaseComponents\\EnhancedDataType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/EnhancedDataType.php',
'PayPal\\EBLBaseComponents\\EnterBoardingRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/EnterBoardingRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\ErrorParameterType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ErrorParameterType.php',
'PayPal\\EBLBaseComponents\\ErrorType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ErrorType.php',
'PayPal\\EBLBaseComponents\\ExecuteCheckoutOperationsRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ExecuteCheckoutOperationsRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\ExecuteCheckoutOperationsResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ExecuteCheckoutOperationsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\ExternalPartnerTrackingDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ExternalPartnerTrackingDetailsType.php',
'PayPal\\EBLBaseComponents\\ExternalRememberMeOptInDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ExternalRememberMeOptInDetailsType.php',
'PayPal\\EBLBaseComponents\\ExternalRememberMeOwnerDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ExternalRememberMeOwnerDetailsType.php',
'PayPal\\EBLBaseComponents\\ExternalRememberMeStatusDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ExternalRememberMeStatusDetailsType.php',
'PayPal\\EBLBaseComponents\\FMFDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/FMFDetailsType.php',
'PayPal\\EBLBaseComponents\\FlightDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/FlightDetailsType.php',
'PayPal\\EBLBaseComponents\\FlowControlDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/FlowControlDetailsType.php',
'PayPal\\EBLBaseComponents\\FundingSourceDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/FundingSourceDetailsType.php',
'PayPal\\EBLBaseComponents\\GetAccessPermissionDetailsResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetAccessPermissionDetailsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\GetAuthDetailsResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetAuthDetailsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\GetBillingAgreementCustomerDetailsResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetBillingAgreementCustomerDetailsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\GetBoardingDetailsResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetBoardingDetailsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\GetExpressCheckoutDetailsResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetExpressCheckoutDetailsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\GetIncentiveEvaluationRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetIncentiveEvaluationRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\GetIncentiveEvaluationResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetIncentiveEvaluationResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\GetMobileStatusRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetMobileStatusRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\GetRecurringPaymentsProfileDetailsResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetRecurringPaymentsProfileDetailsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\IdentificationInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IdentificationInfoType.php',
'PayPal\\EBLBaseComponents\\IdentityTokenInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IdentityTokenInfoType.php',
'PayPal\\EBLBaseComponents\\IncentiveAppliedDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveAppliedDetailsType.php',
'PayPal\\EBLBaseComponents\\IncentiveAppliedToType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveAppliedToType.php',
'PayPal\\EBLBaseComponents\\IncentiveApplyIndicationType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveApplyIndicationType.php',
'PayPal\\EBLBaseComponents\\IncentiveBucketType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveBucketType.php',
'PayPal\\EBLBaseComponents\\IncentiveDetailType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveDetailType.php',
'PayPal\\EBLBaseComponents\\IncentiveDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveDetailsType.php',
'PayPal\\EBLBaseComponents\\IncentiveInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveInfoType.php',
'PayPal\\EBLBaseComponents\\IncentiveItemType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveItemType.php',
'PayPal\\EBLBaseComponents\\IncentiveRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\InfoSharingDirectivesType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/InfoSharingDirectivesType.php',
'PayPal\\EBLBaseComponents\\InstrumentDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/InstrumentDetailsType.php',
'PayPal\\EBLBaseComponents\\InvoiceItemType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/InvoiceItemType.php',
'PayPal\\EBLBaseComponents\\ItemTrackingDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ItemTrackingDetailsType.php',
'PayPal\\EBLBaseComponents\\ManageRecurringPaymentsProfileStatusRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ManageRecurringPaymentsProfileStatusRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\ManageRecurringPaymentsProfileStatusResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ManageRecurringPaymentsProfileStatusResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\MerchantDataType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/MerchantDataType.php',
'PayPal\\EBLBaseComponents\\MerchantPullInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/MerchantPullInfoType.php',
'PayPal\\EBLBaseComponents\\MerchantPullPaymentResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/MerchantPullPaymentResponseType.php',
'PayPal\\EBLBaseComponents\\MerchantPullPaymentType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/MerchantPullPaymentType.php',
'PayPal\\EBLBaseComponents\\MerchantStoreDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/MerchantStoreDetailsType.php',
'PayPal\\EBLBaseComponents\\MobileIDInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/MobileIDInfoType.php',
'PayPal\\EBLBaseComponents\\OfferCouponInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/OfferCouponInfoType.php',
'PayPal\\EBLBaseComponents\\OfferDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/OfferDetailsType.php',
'PayPal\\EBLBaseComponents\\OptionTrackingDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/OptionTrackingDetailsType.php',
'PayPal\\EBLBaseComponents\\OptionType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/OptionType.php',
'PayPal\\EBLBaseComponents\\OrderDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/OrderDetailsType.php',
'PayPal\\EBLBaseComponents\\OtherPaymentMethodDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/OtherPaymentMethodDetailsType.php',
'PayPal\\EBLBaseComponents\\PayeeInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PayeeInfoType.php',
'PayPal\\EBLBaseComponents\\PayerInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PayerInfoType.php',
'PayPal\\EBLBaseComponents\\PaymentDetailsItemType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentDetailsItemType.php',
'PayPal\\EBLBaseComponents\\PaymentDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentDetailsType.php',
'PayPal\\EBLBaseComponents\\PaymentDirectivesType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentDirectivesType.php',
'PayPal\\EBLBaseComponents\\PaymentInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentInfoType.php',
'PayPal\\EBLBaseComponents\\PaymentItemInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentItemInfoType.php',
'PayPal\\EBLBaseComponents\\PaymentItemType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentItemType.php',
'PayPal\\EBLBaseComponents\\PaymentRequestInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentRequestInfoType.php',
'PayPal\\EBLBaseComponents\\PaymentTransactionSearchResultType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentTransactionSearchResultType.php',
'PayPal\\EBLBaseComponents\\PaymentTransactionType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentTransactionType.php',
'PayPal\\EBLBaseComponents\\PersonNameType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PersonNameType.php',
'PayPal\\EBLBaseComponents\\PhoneNumberType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PhoneNumberType.php',
'PayPal\\EBLBaseComponents\\ReceiverInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ReceiverInfoType.php',
'PayPal\\EBLBaseComponents\\RecurringPaymentsProfileDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RecurringPaymentsProfileDetailsType.php',
'PayPal\\EBLBaseComponents\\RecurringPaymentsSummaryType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RecurringPaymentsSummaryType.php',
'PayPal\\EBLBaseComponents\\ReferenceCreditCardDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ReferenceCreditCardDetailsType.php',
'PayPal\\EBLBaseComponents\\RefreshTokenStatusDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RefreshTokenStatusDetailsType.php',
'PayPal\\EBLBaseComponents\\RefundInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RefundInfoType.php',
'PayPal\\EBLBaseComponents\\RememberMeIDInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RememberMeIDInfoType.php',
'PayPal\\EBLBaseComponents\\ReverseTransactionRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ReverseTransactionRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\ReverseTransactionResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ReverseTransactionResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\RiskFilterDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RiskFilterDetailsType.php',
'PayPal\\EBLBaseComponents\\RiskFilterListType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RiskFilterListType.php',
'PayPal\\EBLBaseComponents\\ScheduleDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ScheduleDetailsType.php',
'PayPal\\EBLBaseComponents\\SellerDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SellerDetailsType.php',
'PayPal\\EBLBaseComponents\\SenderDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SenderDetailsType.php',
'PayPal\\EBLBaseComponents\\SetAccessPermissionsRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetAccessPermissionsRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\SetAuthFlowParamRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetAuthFlowParamRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\SetCustomerBillingAgreementRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetCustomerBillingAgreementRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\SetDataRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetDataRequestType.php',
'PayPal\\EBLBaseComponents\\SetDataResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetDataResponseType.php',
'PayPal\\EBLBaseComponents\\SetExpressCheckoutRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetExpressCheckoutRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\SetMobileCheckoutRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetMobileCheckoutRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\ShippingOptionType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ShippingOptionType.php',
'PayPal\\EBLBaseComponents\\SubscriptionInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SubscriptionInfoType.php',
'PayPal\\EBLBaseComponents\\SubscriptionTermsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SubscriptionTermsType.php',
'PayPal\\EBLBaseComponents\\TaxIdDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/TaxIdDetailsType.php',
'PayPal\\EBLBaseComponents\\ThreeDSecureInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ThreeDSecureInfoType.php',
'PayPal\\EBLBaseComponents\\ThreeDSecureRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ThreeDSecureRequestType.php',
'PayPal\\EBLBaseComponents\\ThreeDSecureResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ThreeDSecureResponseType.php',
'PayPal\\EBLBaseComponents\\TupleType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/TupleType.php',
'PayPal\\EBLBaseComponents\\UATPDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/UATPDetailsType.php',
'PayPal\\EBLBaseComponents\\UpdateRecurringPaymentsProfileRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/UpdateRecurringPaymentsProfileRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\UpdateRecurringPaymentsProfileResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/UpdateRecurringPaymentsProfileResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\UserSelectedOptionType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/UserSelectedOptionType.php',
'PayPal\\EBLBaseComponents\\WalletItemsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/WalletItemsType.php',
'PayPal\\EnhancedDataTypes\\EnhancedCancelRecoupRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedCancelRecoupRequestDetailsType.php',
'PayPal\\EnhancedDataTypes\\EnhancedCheckoutDataType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedCheckoutDataType.php',
'PayPal\\EnhancedDataTypes\\EnhancedCompleteRecoupRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedCompleteRecoupRequestDetailsType.php',
'PayPal\\EnhancedDataTypes\\EnhancedCompleteRecoupResponseDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedCompleteRecoupResponseDetailsType.php',
'PayPal\\EnhancedDataTypes\\EnhancedInitiateRecoupRequestDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedInitiateRecoupRequestDetailsType.php',
'PayPal\\EnhancedDataTypes\\EnhancedItemDataType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedItemDataType.php',
'PayPal\\EnhancedDataTypes\\EnhancedPayerInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedPayerInfoType.php',
'PayPal\\EnhancedDataTypes\\EnhancedPaymentDataType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedPaymentDataType.php',
'PayPal\\EnhancedDataTypes\\EnhancedPaymentInfoType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedPaymentInfoType.php',
'PayPal\\Exception\\OAuthException' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Exception/OAuthException.php',
'PayPal\\Exception\\PPConfigurationException' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Exception/PPConfigurationException.php',
'PayPal\\Exception\\PPConnectionException' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Exception/PPConnectionException.php',
'PayPal\\Exception\\PPInvalidCredentialException' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Exception/PPInvalidCredentialException.php',
'PayPal\\Exception\\PPMissingCredentialException' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Exception/PPMissingCredentialException.php',
'PayPal\\Exception\\PPTransformerException' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Exception/PPTransformerException.php',
'PayPal\\Exception\\PayPalConfigurationException' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalConfigurationException.php',
'PayPal\\Exception\\PayPalConnectionException' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalConnectionException.php',
'PayPal\\Exception\\PayPalInvalidCredentialException' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalInvalidCredentialException.php',
'PayPal\\Exception\\PayPalMissingCredentialException' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalMissingCredentialException.php',
'PayPal\\Formatter\\FormatterFactory' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Formatter/FormatterFactory.php',
'PayPal\\Formatter\\IPPFormatter' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Formatter/IPPFormatter.php',
'PayPal\\Formatter\\PPNVPFormatter' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Formatter/PPNVPFormatter.php',
'PayPal\\Formatter\\PPSOAPFormatter' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Formatter/PPSOAPFormatter.php',
'PayPal\\Handler\\GenericSoapHandler' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Handler/GenericSoapHandler.php',
'PayPal\\Handler\\IPPHandler' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Handler/IPPHandler.php',
'PayPal\\Handler\\IPayPalHandler' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Handler/IPayPalHandler.php',
'PayPal\\Handler\\OauthHandler' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Handler/OauthHandler.php',
'PayPal\\Handler\\PPAuthenticationHandler' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Handler/PPAuthenticationHandler.php',
'PayPal\\Handler\\PPCertificateAuthHandler' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Handler/PPCertificateAuthHandler.php',
'PayPal\\Handler\\PPGenericServiceHandler' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Handler/PPGenericServiceHandler.php',
'PayPal\\Handler\\PPMerchantServiceHandler' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Handler/PPMerchantServiceHandler.php',
'PayPal\\Handler\\PPOpenIdHandler' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Handler/PPOpenIdHandler.php',
'PayPal\\Handler\\PPPlatformServiceHandler' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Handler/PPPlatformServiceHandler.php',
'PayPal\\Handler\\PPSignatureAuthHandler' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Handler/PPSignatureAuthHandler.php',
'PayPal\\Handler\\RestHandler' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Handler/RestHandler.php',
'PayPal\\IPN\\PPIPNMessage' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/IPN/PPIPNMessage.php',
'PayPal\\Log\\PayPalDefaultLogFactory' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Log/PayPalDefaultLogFactory.php',
'PayPal\\Log\\PayPalLogFactory' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Log/PayPalLogFactory.php',
'PayPal\\Log\\PayPalLogger' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Log/PayPalLogger.php',
'PayPal\\PayPalAPI\\AddressVerifyReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/AddressVerifyReq.php',
'PayPal\\PayPalAPI\\AddressVerifyRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/AddressVerifyRequestType.php',
'PayPal\\PayPalAPI\\AddressVerifyResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/AddressVerifyResponseType.php',
'PayPal\\PayPalAPI\\BAUpdateRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BAUpdateRequestType.php',
'PayPal\\PayPalAPI\\BAUpdateResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BAUpdateResponseType.php',
'PayPal\\PayPalAPI\\BMButtonSearchReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMButtonSearchReq.php',
'PayPal\\PayPalAPI\\BMButtonSearchRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMButtonSearchRequestType.php',
'PayPal\\PayPalAPI\\BMButtonSearchResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMButtonSearchResponseType.php',
'PayPal\\PayPalAPI\\BMCreateButtonReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMCreateButtonReq.php',
'PayPal\\PayPalAPI\\BMCreateButtonRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMCreateButtonRequestType.php',
'PayPal\\PayPalAPI\\BMCreateButtonResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMCreateButtonResponseType.php',
'PayPal\\PayPalAPI\\BMGetButtonDetailsReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMGetButtonDetailsReq.php',
'PayPal\\PayPalAPI\\BMGetButtonDetailsRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMGetButtonDetailsRequestType.php',
'PayPal\\PayPalAPI\\BMGetButtonDetailsResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMGetButtonDetailsResponseType.php',
'PayPal\\PayPalAPI\\BMGetInventoryReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMGetInventoryReq.php',
'PayPal\\PayPalAPI\\BMGetInventoryRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMGetInventoryRequestType.php',
'PayPal\\PayPalAPI\\BMGetInventoryResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMGetInventoryResponseType.php',
'PayPal\\PayPalAPI\\BMManageButtonStatusReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMManageButtonStatusReq.php',
'PayPal\\PayPalAPI\\BMManageButtonStatusRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMManageButtonStatusRequestType.php',
'PayPal\\PayPalAPI\\BMManageButtonStatusResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMManageButtonStatusResponseType.php',
'PayPal\\PayPalAPI\\BMSetInventoryReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMSetInventoryReq.php',
'PayPal\\PayPalAPI\\BMSetInventoryRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMSetInventoryRequestType.php',
'PayPal\\PayPalAPI\\BMSetInventoryResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMSetInventoryResponseType.php',
'PayPal\\PayPalAPI\\BMUpdateButtonReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMUpdateButtonReq.php',
'PayPal\\PayPalAPI\\BMUpdateButtonRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMUpdateButtonRequestType.php',
'PayPal\\PayPalAPI\\BMUpdateButtonResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMUpdateButtonResponseType.php',
'PayPal\\PayPalAPI\\BillAgreementUpdateReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillAgreementUpdateReq.php',
'PayPal\\PayPalAPI\\BillOutstandingAmountReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillOutstandingAmountReq.php',
'PayPal\\PayPalAPI\\BillOutstandingAmountRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillOutstandingAmountRequestType.php',
'PayPal\\PayPalAPI\\BillOutstandingAmountResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillOutstandingAmountResponseType.php',
'PayPal\\PayPalAPI\\BillUserReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillUserReq.php',
'PayPal\\PayPalAPI\\BillUserRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillUserRequestType.php',
'PayPal\\PayPalAPI\\BillUserResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillUserResponseType.php',
'PayPal\\PayPalAPI\\CancelRecoupReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CancelRecoupReq.php',
'PayPal\\PayPalAPI\\CancelRecoupRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CancelRecoupRequestType.php',
'PayPal\\PayPalAPI\\CancelRecoupResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CancelRecoupResponseType.php',
'PayPal\\PayPalAPI\\CompleteRecoupReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CompleteRecoupReq.php',
'PayPal\\PayPalAPI\\CompleteRecoupRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CompleteRecoupRequestType.php',
'PayPal\\PayPalAPI\\CompleteRecoupResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CompleteRecoupResponseType.php',
'PayPal\\PayPalAPI\\CreateBillingAgreementReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateBillingAgreementReq.php',
'PayPal\\PayPalAPI\\CreateBillingAgreementRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateBillingAgreementRequestType.php',
'PayPal\\PayPalAPI\\CreateBillingAgreementResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateBillingAgreementResponseType.php',
'PayPal\\PayPalAPI\\CreateMobilePaymentReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateMobilePaymentReq.php',
'PayPal\\PayPalAPI\\CreateMobilePaymentRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateMobilePaymentRequestType.php',
'PayPal\\PayPalAPI\\CreateMobilePaymentResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateMobilePaymentResponseType.php',
'PayPal\\PayPalAPI\\CreateRecurringPaymentsProfileReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateRecurringPaymentsProfileReq.php',
'PayPal\\PayPalAPI\\CreateRecurringPaymentsProfileRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateRecurringPaymentsProfileRequestType.php',
'PayPal\\PayPalAPI\\CreateRecurringPaymentsProfileResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateRecurringPaymentsProfileResponseType.php',
'PayPal\\PayPalAPI\\DoAuthorizationReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoAuthorizationReq.php',
'PayPal\\PayPalAPI\\DoAuthorizationRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoAuthorizationRequestType.php',
'PayPal\\PayPalAPI\\DoAuthorizationResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoAuthorizationResponseType.php',
'PayPal\\PayPalAPI\\DoCancelReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoCancelReq.php',
'PayPal\\PayPalAPI\\DoCancelRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoCancelRequestType.php',
'PayPal\\PayPalAPI\\DoCancelResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoCancelResponseType.php',
'PayPal\\PayPalAPI\\DoCaptureReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoCaptureReq.php',
'PayPal\\PayPalAPI\\DoCaptureRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoCaptureRequestType.php',
'PayPal\\PayPalAPI\\DoCaptureResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoCaptureResponseType.php',
'PayPal\\PayPalAPI\\DoDirectPaymentReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoDirectPaymentReq.php',
'PayPal\\PayPalAPI\\DoDirectPaymentRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoDirectPaymentRequestType.php',
'PayPal\\PayPalAPI\\DoDirectPaymentResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoDirectPaymentResponseType.php',
'PayPal\\PayPalAPI\\DoExpressCheckoutPaymentReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoExpressCheckoutPaymentReq.php',
'PayPal\\PayPalAPI\\DoExpressCheckoutPaymentRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoExpressCheckoutPaymentRequestType.php',
'PayPal\\PayPalAPI\\DoExpressCheckoutPaymentResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoExpressCheckoutPaymentResponseType.php',
'PayPal\\PayPalAPI\\DoMobileCheckoutPaymentReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoMobileCheckoutPaymentReq.php',
'PayPal\\PayPalAPI\\DoMobileCheckoutPaymentRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoMobileCheckoutPaymentRequestType.php',
'PayPal\\PayPalAPI\\DoMobileCheckoutPaymentResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoMobileCheckoutPaymentResponseType.php',
'PayPal\\PayPalAPI\\DoNonReferencedCreditReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoNonReferencedCreditReq.php',
'PayPal\\PayPalAPI\\DoNonReferencedCreditRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoNonReferencedCreditRequestType.php',
'PayPal\\PayPalAPI\\DoNonReferencedCreditResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoNonReferencedCreditResponseType.php',
'PayPal\\PayPalAPI\\DoReauthorizationReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoReauthorizationReq.php',
'PayPal\\PayPalAPI\\DoReauthorizationRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoReauthorizationRequestType.php',
'PayPal\\PayPalAPI\\DoReauthorizationResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoReauthorizationResponseType.php',
'PayPal\\PayPalAPI\\DoReferenceTransactionReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoReferenceTransactionReq.php',
'PayPal\\PayPalAPI\\DoReferenceTransactionRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoReferenceTransactionRequestType.php',
'PayPal\\PayPalAPI\\DoReferenceTransactionResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoReferenceTransactionResponseType.php',
'PayPal\\PayPalAPI\\DoUATPAuthorizationReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoUATPAuthorizationReq.php',
'PayPal\\PayPalAPI\\DoUATPAuthorizationRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoUATPAuthorizationRequestType.php',
'PayPal\\PayPalAPI\\DoUATPAuthorizationResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoUATPAuthorizationResponseType.php',
'PayPal\\PayPalAPI\\DoUATPExpressCheckoutPaymentReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoUATPExpressCheckoutPaymentReq.php',
'PayPal\\PayPalAPI\\DoUATPExpressCheckoutPaymentRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoUATPExpressCheckoutPaymentRequestType.php',
'PayPal\\PayPalAPI\\DoUATPExpressCheckoutPaymentResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoUATPExpressCheckoutPaymentResponseType.php',
'PayPal\\PayPalAPI\\DoVoidReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoVoidReq.php',
'PayPal\\PayPalAPI\\DoVoidRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoVoidRequestType.php',
'PayPal\\PayPalAPI\\DoVoidResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoVoidResponseType.php',
'PayPal\\PayPalAPI\\EnterBoardingReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/EnterBoardingReq.php',
'PayPal\\PayPalAPI\\EnterBoardingRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/EnterBoardingRequestType.php',
'PayPal\\PayPalAPI\\EnterBoardingResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/EnterBoardingResponseType.php',
'PayPal\\PayPalAPI\\ExecuteCheckoutOperationsReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ExecuteCheckoutOperationsReq.php',
'PayPal\\PayPalAPI\\ExecuteCheckoutOperationsRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ExecuteCheckoutOperationsRequestType.php',
'PayPal\\PayPalAPI\\ExecuteCheckoutOperationsResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ExecuteCheckoutOperationsResponseType.php',
'PayPal\\PayPalAPI\\ExternalRememberMeOptOutReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ExternalRememberMeOptOutReq.php',
'PayPal\\PayPalAPI\\ExternalRememberMeOptOutRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ExternalRememberMeOptOutRequestType.php',
'PayPal\\PayPalAPI\\ExternalRememberMeOptOutResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ExternalRememberMeOptOutResponseType.php',
'PayPal\\PayPalAPI\\GetAccessPermissionDetailsReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetAccessPermissionDetailsReq.php',
'PayPal\\PayPalAPI\\GetAccessPermissionDetailsRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetAccessPermissionDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetAccessPermissionDetailsResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetAccessPermissionDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetAuthDetailsReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetAuthDetailsReq.php',
'PayPal\\PayPalAPI\\GetAuthDetailsRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetAuthDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetAuthDetailsResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetAuthDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetBalanceReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBalanceReq.php',
'PayPal\\PayPalAPI\\GetBalanceRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBalanceRequestType.php',
'PayPal\\PayPalAPI\\GetBalanceResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBalanceResponseType.php',
'PayPal\\PayPalAPI\\GetBillingAgreementCustomerDetailsReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBillingAgreementCustomerDetailsReq.php',
'PayPal\\PayPalAPI\\GetBillingAgreementCustomerDetailsRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBillingAgreementCustomerDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetBillingAgreementCustomerDetailsResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBillingAgreementCustomerDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetBoardingDetailsReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBoardingDetailsReq.php',
'PayPal\\PayPalAPI\\GetBoardingDetailsRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBoardingDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetBoardingDetailsResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBoardingDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetExpressCheckoutDetailsReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetExpressCheckoutDetailsReq.php',
'PayPal\\PayPalAPI\\GetExpressCheckoutDetailsRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetExpressCheckoutDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetExpressCheckoutDetailsResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetExpressCheckoutDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetIncentiveEvaluationReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetIncentiveEvaluationReq.php',
'PayPal\\PayPalAPI\\GetIncentiveEvaluationRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetIncentiveEvaluationRequestType.php',
'PayPal\\PayPalAPI\\GetIncentiveEvaluationResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetIncentiveEvaluationResponseType.php',
'PayPal\\PayPalAPI\\GetMobileStatusReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetMobileStatusReq.php',
'PayPal\\PayPalAPI\\GetMobileStatusRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetMobileStatusRequestType.php',
'PayPal\\PayPalAPI\\GetMobileStatusResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetMobileStatusResponseType.php',
'PayPal\\PayPalAPI\\GetPalDetailsReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetPalDetailsReq.php',
'PayPal\\PayPalAPI\\GetPalDetailsRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetPalDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetPalDetailsResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetPalDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetRecurringPaymentsProfileDetailsReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetRecurringPaymentsProfileDetailsReq.php',
'PayPal\\PayPalAPI\\GetRecurringPaymentsProfileDetailsRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetRecurringPaymentsProfileDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetRecurringPaymentsProfileDetailsResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetRecurringPaymentsProfileDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetTransactionDetailsReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetTransactionDetailsReq.php',
'PayPal\\PayPalAPI\\GetTransactionDetailsRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetTransactionDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetTransactionDetailsResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetTransactionDetailsResponseType.php',
'PayPal\\PayPalAPI\\InitiateRecoupReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/InitiateRecoupReq.php',
'PayPal\\PayPalAPI\\InitiateRecoupRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/InitiateRecoupRequestType.php',
'PayPal\\PayPalAPI\\InitiateRecoupResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/InitiateRecoupResponseType.php',
'PayPal\\PayPalAPI\\InstallmentDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/InstallmentDetailsType.php',
'PayPal\\PayPalAPI\\ManagePendingTransactionStatusReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ManagePendingTransactionStatusReq.php',
'PayPal\\PayPalAPI\\ManagePendingTransactionStatusRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ManagePendingTransactionStatusRequestType.php',
'PayPal\\PayPalAPI\\ManagePendingTransactionStatusResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ManagePendingTransactionStatusResponseType.php',
'PayPal\\PayPalAPI\\ManageRecurringPaymentsProfileStatusReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ManageRecurringPaymentsProfileStatusReq.php',
'PayPal\\PayPalAPI\\ManageRecurringPaymentsProfileStatusRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ManageRecurringPaymentsProfileStatusRequestType.php',
'PayPal\\PayPalAPI\\ManageRecurringPaymentsProfileStatusResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ManageRecurringPaymentsProfileStatusResponseType.php',
'PayPal\\PayPalAPI\\MassPayReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/MassPayReq.php',
'PayPal\\PayPalAPI\\MassPayRequestItemType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/MassPayRequestItemType.php',
'PayPal\\PayPalAPI\\MassPayRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/MassPayRequestType.php',
'PayPal\\PayPalAPI\\MassPayResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/MassPayResponseType.php',
'PayPal\\PayPalAPI\\OptionDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/OptionDetailsType.php',
'PayPal\\PayPalAPI\\OptionSelectionDetailsType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/OptionSelectionDetailsType.php',
'PayPal\\PayPalAPI\\RefundTransactionReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/RefundTransactionReq.php',
'PayPal\\PayPalAPI\\RefundTransactionRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/RefundTransactionRequestType.php',
'PayPal\\PayPalAPI\\RefundTransactionResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/RefundTransactionResponseType.php',
'PayPal\\PayPalAPI\\ReverseTransactionReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ReverseTransactionReq.php',
'PayPal\\PayPalAPI\\ReverseTransactionRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ReverseTransactionRequestType.php',
'PayPal\\PayPalAPI\\ReverseTransactionResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ReverseTransactionResponseType.php',
'PayPal\\PayPalAPI\\SetAccessPermissionsReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetAccessPermissionsReq.php',
'PayPal\\PayPalAPI\\SetAccessPermissionsRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetAccessPermissionsRequestType.php',
'PayPal\\PayPalAPI\\SetAccessPermissionsResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetAccessPermissionsResponseType.php',
'PayPal\\PayPalAPI\\SetAuthFlowParamReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetAuthFlowParamReq.php',
'PayPal\\PayPalAPI\\SetAuthFlowParamRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetAuthFlowParamRequestType.php',
'PayPal\\PayPalAPI\\SetAuthFlowParamResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetAuthFlowParamResponseType.php',
'PayPal\\PayPalAPI\\SetCustomerBillingAgreementReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetCustomerBillingAgreementReq.php',
'PayPal\\PayPalAPI\\SetCustomerBillingAgreementRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetCustomerBillingAgreementRequestType.php',
'PayPal\\PayPalAPI\\SetCustomerBillingAgreementResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetCustomerBillingAgreementResponseType.php',
'PayPal\\PayPalAPI\\SetExpressCheckoutReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetExpressCheckoutReq.php',
'PayPal\\PayPalAPI\\SetExpressCheckoutRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetExpressCheckoutRequestType.php',
'PayPal\\PayPalAPI\\SetExpressCheckoutResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetExpressCheckoutResponseType.php',
'PayPal\\PayPalAPI\\SetMobileCheckoutReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetMobileCheckoutReq.php',
'PayPal\\PayPalAPI\\SetMobileCheckoutRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetMobileCheckoutRequestType.php',
'PayPal\\PayPalAPI\\SetMobileCheckoutResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetMobileCheckoutResponseType.php',
'PayPal\\PayPalAPI\\TransactionSearchReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/TransactionSearchReq.php',
'PayPal\\PayPalAPI\\TransactionSearchRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/TransactionSearchRequestType.php',
'PayPal\\PayPalAPI\\TransactionSearchResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/TransactionSearchResponseType.php',
'PayPal\\PayPalAPI\\UpdateAccessPermissionsReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateAccessPermissionsReq.php',
'PayPal\\PayPalAPI\\UpdateAccessPermissionsRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateAccessPermissionsRequestType.php',
'PayPal\\PayPalAPI\\UpdateAccessPermissionsResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateAccessPermissionsResponseType.php',
'PayPal\\PayPalAPI\\UpdateAuthorizationReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateAuthorizationReq.php',
'PayPal\\PayPalAPI\\UpdateAuthorizationRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateAuthorizationRequestType.php',
'PayPal\\PayPalAPI\\UpdateAuthorizationResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateAuthorizationResponseType.php',
'PayPal\\PayPalAPI\\UpdateRecurringPaymentsProfileReq' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateRecurringPaymentsProfileReq.php',
'PayPal\\PayPalAPI\\UpdateRecurringPaymentsProfileRequestType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateRecurringPaymentsProfileRequestType.php',
'PayPal\\PayPalAPI\\UpdateRecurringPaymentsProfileResponseType' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateRecurringPaymentsProfileResponseType.php',
'PayPal\\Rest\\ApiContext' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Rest/ApiContext.php',
'PayPal\\Rest\\IResource' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Rest/IResource.php',
'PayPal\\Security\\Cipher' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Security/Cipher.php',
'PayPal\\Service\\PayPalAPIInterfaceServiceService' => $vendorDir . '/paypal/merchant-sdk-php/lib/PayPal/Service/PayPalAPIInterfaceServiceService.php',
'PayPal\\Service\\PermissionsService' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Service/PermissionsService.php',
'PayPal\\Transport\\PPRestCall' => $vendorDir . '/paypal/sdk-core-php/lib/PayPal/Transport/PPRestCall.php',
'PayPal\\Transport\\PayPalRestCall' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Transport/PayPalRestCall.php',
'PayPal\\Types\\Common\\ErrorData' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Common/ErrorData.php',
'PayPal\\Types\\Common\\ErrorParameter' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Common/ErrorParameter.php',
'PayPal\\Types\\Common\\FaultMessage' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Common/FaultMessage.php',
'PayPal\\Types\\Common\\RequestEnvelope' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Common/RequestEnvelope.php',
'PayPal\\Types\\Common\\ResponseEnvelope' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Common/ResponseEnvelope.php',
'PayPal\\Types\\Perm\\CancelPermissionsRequest' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/CancelPermissionsRequest.php',
'PayPal\\Types\\Perm\\CancelPermissionsResponse' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/CancelPermissionsResponse.php',
'PayPal\\Types\\Perm\\GetAccessTokenRequest' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetAccessTokenRequest.php',
'PayPal\\Types\\Perm\\GetAccessTokenResponse' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetAccessTokenResponse.php',
'PayPal\\Types\\Perm\\GetAdvancedPersonalDataRequest' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetAdvancedPersonalDataRequest.php',
'PayPal\\Types\\Perm\\GetAdvancedPersonalDataResponse' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetAdvancedPersonalDataResponse.php',
'PayPal\\Types\\Perm\\GetBasicPersonalDataRequest' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetBasicPersonalDataRequest.php',
'PayPal\\Types\\Perm\\GetBasicPersonalDataResponse' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetBasicPersonalDataResponse.php',
'PayPal\\Types\\Perm\\GetPermissionsRequest' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetPermissionsRequest.php',
'PayPal\\Types\\Perm\\GetPermissionsResponse' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetPermissionsResponse.php',
'PayPal\\Types\\Perm\\PersonalAttributeList' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/PersonalAttributeList.php',
'PayPal\\Types\\Perm\\PersonalData' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/PersonalData.php',
'PayPal\\Types\\Perm\\PersonalDataList' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/PersonalDataList.php',
'PayPal\\Types\\Perm\\RequestPermissionsRequest' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/RequestPermissionsRequest.php',
'PayPal\\Types\\Perm\\RequestPermissionsResponse' => $vendorDir . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/RequestPermissionsResponse.php',
'PayPal\\Validation\\ArgumentValidator' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Validation/ArgumentValidator.php',
'PayPal\\Validation\\JsonValidator' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Validation/JsonValidator.php',
'PayPal\\Validation\\NumericValidator' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Validation/NumericValidator.php',
'PayPal\\Validation\\UrlValidator' => $vendorDir . '/paypal/rest-api-sdk-php/lib/PayPal/Validation/UrlValidator.php',
'PaypalAddons\\classes\\AdminPayPalController' => $baseDir . '/classes/AdminPayPalController.php',
'PaypalAddons\\classes\\PaypalException' => $baseDir . '/classes/PaypalException.php',
'PaypalAddons\\services\\ServicePaypalIpn' => $baseDir . '/services/ServicePaypalIpn.php',
'PaypalAddons\\services\\ServicePaypalLog' => $baseDir . '/services/ServicePaypalLog.php',
'PaypalAddons\\services\\ServicePaypalOrder' => $baseDir . '/services/ServicePaypalOrder.php',
'PaypalAddons\\services\\ServicePaypalVaulting' => $baseDir . '/services/ServicePaypalVaulting.php',
'PaypalPPBTlib\\AbstractMethod' => $vendorDir . '/ppbtlib/src/AbstractMethod.php',
'PaypalPPBTlib\\CommonAbstarctModuleFrontController' => $vendorDir . '/ppbtlib/src/CommonAbstarctModuleFrontController.php',
'PaypalPPBTlib\\Db\\DbSchema' => $vendorDir . '/ppbtlib/src/Db/DbSchema.php',
'PaypalPPBTlib\\Db\\DbTable' => $vendorDir . '/ppbtlib/src/Db/DbTable.php',
'PaypalPPBTlib\\Db\\DbTableDefinitionModel' => $vendorDir . '/ppbtlib/src/Db/DbTableDefinitionModel.php',
'PaypalPPBTlib\\Db\\DbTableDefinitionRelation' => $vendorDir . '/ppbtlib/src/Db/DbTableDefinitionRelation.php',
'PaypalPPBTlib\\Db\\ObjectModelDefinition' => $vendorDir . '/ppbtlib/src/Db/ObjectModelDefinition.php',
'PaypalPPBTlib\\Db\\ObjectModelExtension' => $vendorDir . '/ppbtlib/src/Db/ObjectModelExtension.php',
'PaypalPPBTlib\\Extensions\\AbstractModuleExtension' => $vendorDir . '/ppbtlib/src/Extensions/AbstractModuleExtension.php',
'PaypalPPBTlib\\Extensions\\ProcessLogger\\Classes\\ProcessLoggerObjectModel' => $vendorDir . '/ppbtlib/src/Extensions/ProcessLogger/Classes/ProcessLoggerObjectModel.php',
'PaypalPPBTlib\\Extensions\\ProcessLogger\\Controllers\\Admin\\AdminProcessLoggerController' => $vendorDir . '/ppbtlib/src/Extensions/ProcessLogger/Controllers/Admin/AdminProcessLoggerController.php',
'PaypalPPBTlib\\Extensions\\ProcessLogger\\ProcessLoggerExtension' => $vendorDir . '/ppbtlib/src/Extensions/ProcessLogger/ProcessLoggerExtension.php',
'PaypalPPBTlib\\Extensions\\ProcessLogger\\ProcessLoggerHandler' => $vendorDir . '/ppbtlib/src/Extensions/ProcessLogger/ProcessLoggerHandler.php',
'PaypalPPBTlib\\Install\\AbstractInstaller' => $vendorDir . '/ppbtlib/src/Install/AbstractInstaller.php',
'PaypalPPBTlib\\Install\\ExtensionInstaller' => $vendorDir . '/ppbtlib/src/Install/ExtensionInstaller.php',
'PaypalPPBTlib\\Install\\ModuleInstaller' => $vendorDir . '/ppbtlib/src/Install/ModuleInstaller.php',
'Psr\\Log\\AbstractLogger' => $vendorDir . '/psr/log/Psr/Log/AbstractLogger.php',
'Psr\\Log\\InvalidArgumentException' => $vendorDir . '/psr/log/Psr/Log/InvalidArgumentException.php',
'Psr\\Log\\LogLevel' => $vendorDir . '/psr/log/Psr/Log/LogLevel.php',
'Psr\\Log\\LoggerAwareInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareInterface.php',
'Psr\\Log\\LoggerAwareTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareTrait.php',
'Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php',
'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php',
'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php',
'Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
'Psr\\Log\\Test\\LoggerInterfaceTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
'Psr\\Log\\Test\\TestLogger' => $vendorDir . '/psr/log/Psr/Log/Test/TestLogger.php',
);

View File

@@ -13,5 +13,4 @@ return array(
'PayPal\\EBLBaseComponents' => array($vendorDir . '/paypal/merchant-sdk-php/lib'),
'PayPal\\CoreComponentTypes' => array($vendorDir . '/paypal/merchant-sdk-php/lib'),
'PayPal' => array($vendorDir . '/paypal/sdk-core-php/lib', $vendorDir . '/paypal/rest-api-sdk-php/lib'),
'Braintree' => array($vendorDir . '/braintree/braintree_php/lib'),
);

View File

@@ -9,5 +9,4 @@ return array(
'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'),
'PaypalPPBTlib\\' => array($vendorDir . '/ppbtlib/src'),
'PaypalAddons\\' => array($baseDir . '/'),
'Braintree\\' => array($vendorDir . '/braintree/braintree_php/lib/Braintree'),
);

View File

@@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit80c4cc856b12233631c411b9f5edcebd
class ComposerAutoloaderInit9e3de0f5fa28c53609761907f94c17da
{
private static $loader;
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit80c4cc856b12233631c411b9f5edcebd
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInit80c4cc856b12233631c411b9f5edcebd', 'loadClassLoader'), true, true);
spl_autoload_register(array('ComposerAutoloaderInit9e3de0f5fa28c53609761907f94c17da', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit80c4cc856b12233631c411b9f5edcebd', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit9e3de0f5fa28c53609761907f94c17da', 'loadClassLoader'));
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
if ($useStaticLoader) {
require_once __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInit80c4cc856b12233631c411b9f5edcebd::getInitializer($loader));
call_user_func(\Composer\Autoload\ComposerStaticInit9e3de0f5fa28c53609761907f94c17da::getInitializer($loader));
} else {
$map = require __DIR__ . '/autoload_namespaces.php';
foreach ($map as $namespace => $path) {

View File

@@ -4,7 +4,7 @@
namespace Composer\Autoload;
class ComposerStaticInit80c4cc856b12233631c411b9f5edcebd
class ComposerStaticInit9e3de0f5fa28c53609761907f94c17da
{
public static $prefixLengthsPsr4 = array (
'P' =>
@@ -13,10 +13,6 @@ class ComposerStaticInit80c4cc856b12233631c411b9f5edcebd
'PaypalPPBTlib\\' => 14,
'PaypalAddons\\' => 13,
),
'B' =>
array (
'Braintree\\' => 10,
),
);
public static $prefixDirsPsr4 = array (
@@ -32,10 +28,6 @@ class ComposerStaticInit80c4cc856b12233631c411b9f5edcebd
array (
0 => __DIR__ . '/../..' . '/',
),
'Braintree\\' =>
array (
0 => __DIR__ . '/..' . '/braintree/braintree_php/lib/Braintree',
),
);
public static $prefixesPsr0 = array (
@@ -72,21 +64,635 @@ class ComposerStaticInit80c4cc856b12233631c411b9f5edcebd
1 => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib',
),
),
'B' =>
array (
'Braintree' =>
array (
0 => __DIR__ . '/..' . '/braintree/braintree_php/lib',
),
),
);
public static $classMap = array (
'PayPal\\Api\\Address' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Address.php',
'PayPal\\Api\\Agreement' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Agreement.php',
'PayPal\\Api\\AgreementDetails' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementDetails.php',
'PayPal\\Api\\AgreementStateDescriptor' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementStateDescriptor.php',
'PayPal\\Api\\AgreementTransaction' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementTransaction.php',
'PayPal\\Api\\AgreementTransactions' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/AgreementTransactions.php',
'PayPal\\Api\\AlternatePayment' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/AlternatePayment.php',
'PayPal\\Api\\Amount' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Amount.php',
'PayPal\\Api\\Authorization' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Authorization.php',
'PayPal\\Api\\BankAccount' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/BankAccount.php',
'PayPal\\Api\\BankAccountsList' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/BankAccountsList.php',
'PayPal\\Api\\BankToken' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/BankToken.php',
'PayPal\\Api\\BaseAddress' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/BaseAddress.php',
'PayPal\\Api\\Billing' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Billing.php',
'PayPal\\Api\\BillingAgreementToken' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/BillingAgreementToken.php',
'PayPal\\Api\\BillingInfo' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/BillingInfo.php',
'PayPal\\Api\\CancelNotification' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CancelNotification.php',
'PayPal\\Api\\Capture' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Capture.php',
'PayPal\\Api\\CarrierAccount' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CarrierAccount.php',
'PayPal\\Api\\CarrierAccountToken' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CarrierAccountToken.php',
'PayPal\\Api\\CartBase' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CartBase.php',
'PayPal\\Api\\ChargeModel' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ChargeModel.php',
'PayPal\\Api\\Cost' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Cost.php',
'PayPal\\Api\\CountryCode' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CountryCode.php',
'PayPal\\Api\\CreateProfileResponse' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CreateProfileResponse.php',
'PayPal\\Api\\Credit' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Credit.php',
'PayPal\\Api\\CreditCard' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCard.php',
'PayPal\\Api\\CreditCardHistory' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCardHistory.php',
'PayPal\\Api\\CreditCardList' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCardList.php',
'PayPal\\Api\\CreditCardToken' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditCardToken.php',
'PayPal\\Api\\CreditFinancingOffered' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CreditFinancingOffered.php',
'PayPal\\Api\\Currency' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Currency.php',
'PayPal\\Api\\CurrencyConversion' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CurrencyConversion.php',
'PayPal\\Api\\CustomAmount' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/CustomAmount.php',
'PayPal\\Api\\DetailedRefund' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/DetailedRefund.php',
'PayPal\\Api\\Details' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Details.php',
'PayPal\\Api\\Error' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Error.php',
'PayPal\\Api\\ErrorDetails' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ErrorDetails.php',
'PayPal\\Api\\ExtendedBankAccount' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ExtendedBankAccount.php',
'PayPal\\Api\\ExternalFunding' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ExternalFunding.php',
'PayPal\\Api\\FileAttachment' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FileAttachment.php',
'PayPal\\Api\\FlowConfig' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FlowConfig.php',
'PayPal\\Api\\FmfDetails' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FmfDetails.php',
'PayPal\\Api\\FundingDetail' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingDetail.php',
'PayPal\\Api\\FundingInstrument' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingInstrument.php',
'PayPal\\Api\\FundingOption' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingOption.php',
'PayPal\\Api\\FundingSource' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FundingSource.php',
'PayPal\\Api\\FuturePayment' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/FuturePayment.php',
'PayPal\\Api\\HyperSchema' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/HyperSchema.php',
'PayPal\\Api\\Image' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Image.php',
'PayPal\\Api\\Incentive' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Incentive.php',
'PayPal\\Api\\InputFields' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InputFields.php',
'PayPal\\Api\\InstallmentInfo' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InstallmentInfo.php',
'PayPal\\Api\\InstallmentOption' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InstallmentOption.php',
'PayPal\\Api\\Invoice' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Invoice.php',
'PayPal\\Api\\InvoiceAddress' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceAddress.php',
'PayPal\\Api\\InvoiceItem' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceItem.php',
'PayPal\\Api\\InvoiceNumber' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceNumber.php',
'PayPal\\Api\\InvoiceSearchResponse' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/InvoiceSearchResponse.php',
'PayPal\\Api\\Item' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Item.php',
'PayPal\\Api\\ItemList' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ItemList.php',
'PayPal\\Api\\Links' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Links.php',
'PayPal\\Api\\Measurement' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Measurement.php',
'PayPal\\Api\\MerchantInfo' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/MerchantInfo.php',
'PayPal\\Api\\MerchantPreferences' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/MerchantPreferences.php',
'PayPal\\Api\\Metadata' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Metadata.php',
'PayPal\\Api\\NameValuePair' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/NameValuePair.php',
'PayPal\\Api\\Notification' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Notification.php',
'PayPal\\Api\\OpenIdAddress' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdAddress.php',
'PayPal\\Api\\OpenIdError' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdError.php',
'PayPal\\Api\\OpenIdSession' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdSession.php',
'PayPal\\Api\\OpenIdTokeninfo' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdTokeninfo.php',
'PayPal\\Api\\OpenIdUserinfo' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/OpenIdUserinfo.php',
'PayPal\\Api\\Order' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Order.php',
'PayPal\\Api\\OverrideChargeModel' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/OverrideChargeModel.php',
'PayPal\\Api\\Participant' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Participant.php',
'PayPal\\Api\\Patch' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Patch.php',
'PayPal\\Api\\PatchRequest' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PatchRequest.php',
'PayPal\\Api\\Payee' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Payee.php',
'PayPal\\Api\\Payer' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Payer.php',
'PayPal\\Api\\PayerInfo' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PayerInfo.php',
'PayPal\\Api\\Payment' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Payment.php',
'PayPal\\Api\\PaymentCard' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentCard.php',
'PayPal\\Api\\PaymentCardToken' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentCardToken.php',
'PayPal\\Api\\PaymentDefinition' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentDefinition.php',
'PayPal\\Api\\PaymentDetail' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentDetail.php',
'PayPal\\Api\\PaymentExecution' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentExecution.php',
'PayPal\\Api\\PaymentHistory' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentHistory.php',
'PayPal\\Api\\PaymentInstruction' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentInstruction.php',
'PayPal\\Api\\PaymentOptions' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentOptions.php',
'PayPal\\Api\\PaymentSummary' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentSummary.php',
'PayPal\\Api\\PaymentTerm' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PaymentTerm.php',
'PayPal\\Api\\Payout' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Payout.php',
'PayPal\\Api\\PayoutBatch' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutBatch.php',
'PayPal\\Api\\PayoutBatchHeader' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutBatchHeader.php',
'PayPal\\Api\\PayoutItem' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutItem.php',
'PayPal\\Api\\PayoutItemDetails' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutItemDetails.php',
'PayPal\\Api\\PayoutSenderBatchHeader' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PayoutSenderBatchHeader.php',
'PayPal\\Api\\Phone' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Phone.php',
'PayPal\\Api\\Plan' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Plan.php',
'PayPal\\Api\\PlanList' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PlanList.php',
'PayPal\\Api\\PotentialPayerInfo' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PotentialPayerInfo.php',
'PayPal\\Api\\Presentation' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Presentation.php',
'PayPal\\Api\\PrivateLabelCard' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/PrivateLabelCard.php',
'PayPal\\Api\\ProcessorResponse' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ProcessorResponse.php',
'PayPal\\Api\\RecipientBankingInstruction' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/RecipientBankingInstruction.php',
'PayPal\\Api\\RedirectUrls' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/RedirectUrls.php',
'PayPal\\Api\\Refund' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Refund.php',
'PayPal\\Api\\RefundDetail' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/RefundDetail.php',
'PayPal\\Api\\RefundRequest' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/RefundRequest.php',
'PayPal\\Api\\RelatedResources' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/RelatedResources.php',
'PayPal\\Api\\Sale' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Sale.php',
'PayPal\\Api\\Search' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Search.php',
'PayPal\\Api\\ShippingAddress' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingAddress.php',
'PayPal\\Api\\ShippingCost' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingCost.php',
'PayPal\\Api\\ShippingInfo' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/ShippingInfo.php',
'PayPal\\Api\\Tax' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Tax.php',
'PayPal\\Api\\Template' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Template.php',
'PayPal\\Api\\TemplateData' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/TemplateData.php',
'PayPal\\Api\\TemplateSettings' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/TemplateSettings.php',
'PayPal\\Api\\TemplateSettingsMetadata' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/TemplateSettingsMetadata.php',
'PayPal\\Api\\Templates' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Templates.php',
'PayPal\\Api\\Terms' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Terms.php',
'PayPal\\Api\\Transaction' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Transaction.php',
'PayPal\\Api\\TransactionBase' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/TransactionBase.php',
'PayPal\\Api\\Transactions' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Transactions.php',
'PayPal\\Api\\VerifyWebhookSignature' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/VerifyWebhookSignature.php',
'PayPal\\Api\\VerifyWebhookSignatureResponse' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/VerifyWebhookSignatureResponse.php',
'PayPal\\Api\\WebProfile' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/WebProfile.php',
'PayPal\\Api\\Webhook' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/Webhook.php',
'PayPal\\Api\\WebhookEvent' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEvent.php',
'PayPal\\Api\\WebhookEventList' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventList.php',
'PayPal\\Api\\WebhookEventType' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventType.php',
'PayPal\\Api\\WebhookEventTypeList' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookEventTypeList.php',
'PayPal\\Api\\WebhookList' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Api/WebhookList.php',
'PayPal\\Auth\\IPPCredential' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/IPPCredential.php',
'PayPal\\Auth\\IPPThirdPartyAuthorization' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/IPPThirdPartyAuthorization.php',
'PayPal\\Auth\\OAuthTokenCredential' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Auth/OAuthTokenCredential.php',
'PayPal\\Auth\\Oauth\\AuthSignature' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/AuthSignature.php',
'PayPal\\Auth\\Oauth\\MockOAuthDataStore' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/MockOAuthDataStore.php',
'PayPal\\Auth\\Oauth\\OAuthConsumer' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthConsumer.php',
'PayPal\\Auth\\Oauth\\OAuthDataStore' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthDataStore.php',
'PayPal\\Auth\\Oauth\\OAuthRequest' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthRequest.php',
'PayPal\\Auth\\Oauth\\OAuthServer' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthServer.php',
'PayPal\\Auth\\Oauth\\OAuthSignatureMethod' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthSignatureMethod.php',
'PayPal\\Auth\\Oauth\\OAuthSignatureMethodHmacSha1' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthSignatureMethodHmacSha1.php',
'PayPal\\Auth\\Oauth\\OAuthSignatureMethodPLAINTEXT' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthSignatureMethodPLAINTEXT.php',
'PayPal\\Auth\\Oauth\\OAuthSignatureMethodRsaSha1' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthSignatureMethodRsaSha1.php',
'PayPal\\Auth\\Oauth\\OAuthToken' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthToken.php',
'PayPal\\Auth\\Oauth\\OAuthUtil' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Oauth/OAuthUtil.php',
'PayPal\\Auth\\Openid\\PPOpenIdAddress' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Openid/PPOpenIdAddress.php',
'PayPal\\Auth\\Openid\\PPOpenIdError' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Openid/PPOpenIdError.php',
'PayPal\\Auth\\Openid\\PPOpenIdSession' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Openid/PPOpenIdSession.php',
'PayPal\\Auth\\Openid\\PPOpenIdTokeninfo' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Openid/PPOpenIdTokeninfo.php',
'PayPal\\Auth\\Openid\\PPOpenIdUserinfo' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/Openid/PPOpenIdUserinfo.php',
'PayPal\\Auth\\PPCertificateCredential' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/PPCertificateCredential.php',
'PayPal\\Auth\\PPSignatureCredential' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/PPSignatureCredential.php',
'PayPal\\Auth\\PPSubjectAuthorization' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/PPSubjectAuthorization.php',
'PayPal\\Auth\\PPTokenAuthorization' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Auth/PPTokenAuthorization.php',
'PayPal\\Cache\\AuthorizationCache' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Cache/AuthorizationCache.php',
'PayPal\\Common\\ArrayUtil' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Common/ArrayUtil.php',
'PayPal\\Common\\PPApiContext' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Common/PPApiContext.php',
'PayPal\\Common\\PPArrayUtil' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Common/PPArrayUtil.php',
'PayPal\\Common\\PPModel' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Common/PPModel.php',
'PayPal\\Common\\PPReflectionUtil' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Common/PPReflectionUtil.php',
'PayPal\\Common\\PPUserAgent' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Common/PPUserAgent.php',
'PayPal\\Common\\PayPalModel' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Common/PayPalModel.php',
'PayPal\\Common\\PayPalResourceModel' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Common/PayPalResourceModel.php',
'PayPal\\Common\\PayPalUserAgent' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Common/PayPalUserAgent.php',
'PayPal\\Common\\ReflectionUtil' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Common/ReflectionUtil.php',
'PayPal\\Converter\\FormatConverter' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Converter/FormatConverter.php',
'PayPal\\CoreComponentTypes\\BasicAmountType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/CoreComponentTypes/BasicAmountType.php',
'PayPal\\CoreComponentTypes\\MeasureType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/CoreComponentTypes/MeasureType.php',
'PayPal\\Core\\PPAPIService' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPAPIService.php',
'PayPal\\Core\\PPBaseService' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPBaseService.php',
'PayPal\\Core\\PPConfigManager' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPConfigManager.php',
'PayPal\\Core\\PPConnectionManager' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPConnectionManager.php',
'PayPal\\Core\\PPConstants' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPConstants.php',
'PayPal\\Core\\PPCredentialManager' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPCredentialManager.php',
'PayPal\\Core\\PPHttpConfig' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPHttpConfig.php',
'PayPal\\Core\\PPHttpConnection' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPHttpConnection.php',
'PayPal\\Core\\PPLoggingLevel' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPLoggingLevel.php',
'PayPal\\Core\\PPLoggingManager' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPLoggingManager.php',
'PayPal\\Core\\PPMessage' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPMessage.php',
'PayPal\\Core\\PPRequest' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPRequest.php',
'PayPal\\Core\\PPUtils' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPUtils.php',
'PayPal\\Core\\PPXmlFaultMessage' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPXmlFaultMessage.php',
'PayPal\\Core\\PPXmlMessage' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Core/PPXmlMessage.php',
'PayPal\\Core\\PayPalConfigManager' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalConfigManager.php',
'PayPal\\Core\\PayPalConstants' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalConstants.php',
'PayPal\\Core\\PayPalCredentialManager' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalCredentialManager.php',
'PayPal\\Core\\PayPalHttpConfig' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalHttpConfig.php',
'PayPal\\Core\\PayPalHttpConnection' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalHttpConnection.php',
'PayPal\\Core\\PayPalLoggingManager' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Core/PayPalLoggingManager.php',
'PayPal\\EBLBaseComponents\\APICredentialsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/APICredentialsType.php',
'PayPal\\EBLBaseComponents\\AbstractRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AbstractRequestType.php',
'PayPal\\EBLBaseComponents\\AbstractResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AbstractResponseType.php',
'PayPal\\EBLBaseComponents\\ActivationDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ActivationDetailsType.php',
'PayPal\\EBLBaseComponents\\AdditionalFeeType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AdditionalFeeType.php',
'PayPal\\EBLBaseComponents\\AddressType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AddressType.php',
'PayPal\\EBLBaseComponents\\AirlineItineraryType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AirlineItineraryType.php',
'PayPal\\EBLBaseComponents\\AuctionInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AuctionInfoType.php',
'PayPal\\EBLBaseComponents\\AuthorizationInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AuthorizationInfoType.php',
'PayPal\\EBLBaseComponents\\AuthorizationRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AuthorizationRequestType.php',
'PayPal\\EBLBaseComponents\\AuthorizationResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/AuthorizationResponseType.php',
'PayPal\\EBLBaseComponents\\BAUpdateResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BAUpdateResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\BMLOfferInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BMLOfferInfoType.php',
'PayPal\\EBLBaseComponents\\BankAccountDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BankAccountDetailsType.php',
'PayPal\\EBLBaseComponents\\BillOutstandingAmountRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BillOutstandingAmountRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\BillOutstandingAmountResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BillOutstandingAmountResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\BillingAgreementDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BillingAgreementDetailsType.php',
'PayPal\\EBLBaseComponents\\BillingApprovalDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BillingApprovalDetailsType.php',
'PayPal\\EBLBaseComponents\\BillingPeriodDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BillingPeriodDetailsType.php',
'PayPal\\EBLBaseComponents\\BillingPeriodDetailsType_Update' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BillingPeriodDetailsType_Update.php',
'PayPal\\EBLBaseComponents\\BusinessInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BusinessInfoType.php',
'PayPal\\EBLBaseComponents\\BusinessOwnerInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BusinessOwnerInfoType.php',
'PayPal\\EBLBaseComponents\\ButtonSearchResultType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ButtonSearchResultType.php',
'PayPal\\EBLBaseComponents\\BuyerDetailType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BuyerDetailType.php',
'PayPal\\EBLBaseComponents\\BuyerDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/BuyerDetailsType.php',
'PayPal\\EBLBaseComponents\\CoupledBucketsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CoupledBucketsType.php',
'PayPal\\EBLBaseComponents\\CoupledPaymentInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CoupledPaymentInfoType.php',
'PayPal\\EBLBaseComponents\\CreateMobilePaymentRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CreateMobilePaymentRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\CreateRecurringPaymentsProfileRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CreateRecurringPaymentsProfileRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\CreateRecurringPaymentsProfileResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CreateRecurringPaymentsProfileResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\CreditCardDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CreditCardDetailsType.php',
'PayPal\\EBLBaseComponents\\CreditCardNumberTypeType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/CreditCardNumberTypeType.php',
'PayPal\\EBLBaseComponents\\DeviceDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DeviceDetailsType.php',
'PayPal\\EBLBaseComponents\\DiscountInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DiscountInfoType.php',
'PayPal\\EBLBaseComponents\\DiscountType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DiscountType.php',
'PayPal\\EBLBaseComponents\\DisplayControlDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DisplayControlDetailsType.php',
'PayPal\\EBLBaseComponents\\DoCaptureResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoCaptureResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\DoDirectPaymentRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoDirectPaymentRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\DoExpressCheckoutPaymentRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoExpressCheckoutPaymentRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\DoExpressCheckoutPaymentResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoExpressCheckoutPaymentResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\DoMobileCheckoutPaymentResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoMobileCheckoutPaymentResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\DoNonReferencedCreditRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoNonReferencedCreditRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\DoNonReferencedCreditResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoNonReferencedCreditResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\DoReferenceTransactionRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoReferenceTransactionRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\DoReferenceTransactionResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/DoReferenceTransactionResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\EbayItemPaymentDetailsItemType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/EbayItemPaymentDetailsItemType.php',
'PayPal\\EBLBaseComponents\\EnhancedDataType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/EnhancedDataType.php',
'PayPal\\EBLBaseComponents\\EnterBoardingRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/EnterBoardingRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\ErrorParameterType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ErrorParameterType.php',
'PayPal\\EBLBaseComponents\\ErrorType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ErrorType.php',
'PayPal\\EBLBaseComponents\\ExecuteCheckoutOperationsRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ExecuteCheckoutOperationsRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\ExecuteCheckoutOperationsResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ExecuteCheckoutOperationsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\ExternalPartnerTrackingDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ExternalPartnerTrackingDetailsType.php',
'PayPal\\EBLBaseComponents\\ExternalRememberMeOptInDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ExternalRememberMeOptInDetailsType.php',
'PayPal\\EBLBaseComponents\\ExternalRememberMeOwnerDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ExternalRememberMeOwnerDetailsType.php',
'PayPal\\EBLBaseComponents\\ExternalRememberMeStatusDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ExternalRememberMeStatusDetailsType.php',
'PayPal\\EBLBaseComponents\\FMFDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/FMFDetailsType.php',
'PayPal\\EBLBaseComponents\\FlightDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/FlightDetailsType.php',
'PayPal\\EBLBaseComponents\\FlowControlDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/FlowControlDetailsType.php',
'PayPal\\EBLBaseComponents\\FundingSourceDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/FundingSourceDetailsType.php',
'PayPal\\EBLBaseComponents\\GetAccessPermissionDetailsResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetAccessPermissionDetailsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\GetAuthDetailsResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetAuthDetailsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\GetBillingAgreementCustomerDetailsResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetBillingAgreementCustomerDetailsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\GetBoardingDetailsResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetBoardingDetailsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\GetExpressCheckoutDetailsResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetExpressCheckoutDetailsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\GetIncentiveEvaluationRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetIncentiveEvaluationRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\GetIncentiveEvaluationResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetIncentiveEvaluationResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\GetMobileStatusRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetMobileStatusRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\GetRecurringPaymentsProfileDetailsResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/GetRecurringPaymentsProfileDetailsResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\IdentificationInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IdentificationInfoType.php',
'PayPal\\EBLBaseComponents\\IdentityTokenInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IdentityTokenInfoType.php',
'PayPal\\EBLBaseComponents\\IncentiveAppliedDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveAppliedDetailsType.php',
'PayPal\\EBLBaseComponents\\IncentiveAppliedToType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveAppliedToType.php',
'PayPal\\EBLBaseComponents\\IncentiveApplyIndicationType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveApplyIndicationType.php',
'PayPal\\EBLBaseComponents\\IncentiveBucketType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveBucketType.php',
'PayPal\\EBLBaseComponents\\IncentiveDetailType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveDetailType.php',
'PayPal\\EBLBaseComponents\\IncentiveDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveDetailsType.php',
'PayPal\\EBLBaseComponents\\IncentiveInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveInfoType.php',
'PayPal\\EBLBaseComponents\\IncentiveItemType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveItemType.php',
'PayPal\\EBLBaseComponents\\IncentiveRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/IncentiveRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\InfoSharingDirectivesType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/InfoSharingDirectivesType.php',
'PayPal\\EBLBaseComponents\\InstrumentDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/InstrumentDetailsType.php',
'PayPal\\EBLBaseComponents\\InvoiceItemType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/InvoiceItemType.php',
'PayPal\\EBLBaseComponents\\ItemTrackingDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ItemTrackingDetailsType.php',
'PayPal\\EBLBaseComponents\\ManageRecurringPaymentsProfileStatusRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ManageRecurringPaymentsProfileStatusRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\ManageRecurringPaymentsProfileStatusResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ManageRecurringPaymentsProfileStatusResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\MerchantDataType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/MerchantDataType.php',
'PayPal\\EBLBaseComponents\\MerchantPullInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/MerchantPullInfoType.php',
'PayPal\\EBLBaseComponents\\MerchantPullPaymentResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/MerchantPullPaymentResponseType.php',
'PayPal\\EBLBaseComponents\\MerchantPullPaymentType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/MerchantPullPaymentType.php',
'PayPal\\EBLBaseComponents\\MerchantStoreDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/MerchantStoreDetailsType.php',
'PayPal\\EBLBaseComponents\\MobileIDInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/MobileIDInfoType.php',
'PayPal\\EBLBaseComponents\\OfferCouponInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/OfferCouponInfoType.php',
'PayPal\\EBLBaseComponents\\OfferDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/OfferDetailsType.php',
'PayPal\\EBLBaseComponents\\OptionTrackingDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/OptionTrackingDetailsType.php',
'PayPal\\EBLBaseComponents\\OptionType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/OptionType.php',
'PayPal\\EBLBaseComponents\\OrderDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/OrderDetailsType.php',
'PayPal\\EBLBaseComponents\\OtherPaymentMethodDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/OtherPaymentMethodDetailsType.php',
'PayPal\\EBLBaseComponents\\PayeeInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PayeeInfoType.php',
'PayPal\\EBLBaseComponents\\PayerInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PayerInfoType.php',
'PayPal\\EBLBaseComponents\\PaymentDetailsItemType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentDetailsItemType.php',
'PayPal\\EBLBaseComponents\\PaymentDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentDetailsType.php',
'PayPal\\EBLBaseComponents\\PaymentDirectivesType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentDirectivesType.php',
'PayPal\\EBLBaseComponents\\PaymentInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentInfoType.php',
'PayPal\\EBLBaseComponents\\PaymentItemInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentItemInfoType.php',
'PayPal\\EBLBaseComponents\\PaymentItemType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentItemType.php',
'PayPal\\EBLBaseComponents\\PaymentRequestInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentRequestInfoType.php',
'PayPal\\EBLBaseComponents\\PaymentTransactionSearchResultType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentTransactionSearchResultType.php',
'PayPal\\EBLBaseComponents\\PaymentTransactionType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PaymentTransactionType.php',
'PayPal\\EBLBaseComponents\\PersonNameType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PersonNameType.php',
'PayPal\\EBLBaseComponents\\PhoneNumberType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/PhoneNumberType.php',
'PayPal\\EBLBaseComponents\\ReceiverInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ReceiverInfoType.php',
'PayPal\\EBLBaseComponents\\RecurringPaymentsProfileDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RecurringPaymentsProfileDetailsType.php',
'PayPal\\EBLBaseComponents\\RecurringPaymentsSummaryType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RecurringPaymentsSummaryType.php',
'PayPal\\EBLBaseComponents\\ReferenceCreditCardDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ReferenceCreditCardDetailsType.php',
'PayPal\\EBLBaseComponents\\RefreshTokenStatusDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RefreshTokenStatusDetailsType.php',
'PayPal\\EBLBaseComponents\\RefundInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RefundInfoType.php',
'PayPal\\EBLBaseComponents\\RememberMeIDInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RememberMeIDInfoType.php',
'PayPal\\EBLBaseComponents\\ReverseTransactionRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ReverseTransactionRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\ReverseTransactionResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ReverseTransactionResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\RiskFilterDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RiskFilterDetailsType.php',
'PayPal\\EBLBaseComponents\\RiskFilterListType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/RiskFilterListType.php',
'PayPal\\EBLBaseComponents\\ScheduleDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ScheduleDetailsType.php',
'PayPal\\EBLBaseComponents\\SellerDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SellerDetailsType.php',
'PayPal\\EBLBaseComponents\\SenderDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SenderDetailsType.php',
'PayPal\\EBLBaseComponents\\SetAccessPermissionsRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetAccessPermissionsRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\SetAuthFlowParamRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetAuthFlowParamRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\SetCustomerBillingAgreementRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetCustomerBillingAgreementRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\SetDataRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetDataRequestType.php',
'PayPal\\EBLBaseComponents\\SetDataResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetDataResponseType.php',
'PayPal\\EBLBaseComponents\\SetExpressCheckoutRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetExpressCheckoutRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\SetMobileCheckoutRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SetMobileCheckoutRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\ShippingOptionType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ShippingOptionType.php',
'PayPal\\EBLBaseComponents\\SubscriptionInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SubscriptionInfoType.php',
'PayPal\\EBLBaseComponents\\SubscriptionTermsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/SubscriptionTermsType.php',
'PayPal\\EBLBaseComponents\\TaxIdDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/TaxIdDetailsType.php',
'PayPal\\EBLBaseComponents\\ThreeDSecureInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ThreeDSecureInfoType.php',
'PayPal\\EBLBaseComponents\\ThreeDSecureRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ThreeDSecureRequestType.php',
'PayPal\\EBLBaseComponents\\ThreeDSecureResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/ThreeDSecureResponseType.php',
'PayPal\\EBLBaseComponents\\TupleType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/TupleType.php',
'PayPal\\EBLBaseComponents\\UATPDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/UATPDetailsType.php',
'PayPal\\EBLBaseComponents\\UpdateRecurringPaymentsProfileRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/UpdateRecurringPaymentsProfileRequestDetailsType.php',
'PayPal\\EBLBaseComponents\\UpdateRecurringPaymentsProfileResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/UpdateRecurringPaymentsProfileResponseDetailsType.php',
'PayPal\\EBLBaseComponents\\UserSelectedOptionType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/UserSelectedOptionType.php',
'PayPal\\EBLBaseComponents\\WalletItemsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EBLBaseComponents/WalletItemsType.php',
'PayPal\\EnhancedDataTypes\\EnhancedCancelRecoupRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedCancelRecoupRequestDetailsType.php',
'PayPal\\EnhancedDataTypes\\EnhancedCheckoutDataType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedCheckoutDataType.php',
'PayPal\\EnhancedDataTypes\\EnhancedCompleteRecoupRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedCompleteRecoupRequestDetailsType.php',
'PayPal\\EnhancedDataTypes\\EnhancedCompleteRecoupResponseDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedCompleteRecoupResponseDetailsType.php',
'PayPal\\EnhancedDataTypes\\EnhancedInitiateRecoupRequestDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedInitiateRecoupRequestDetailsType.php',
'PayPal\\EnhancedDataTypes\\EnhancedItemDataType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedItemDataType.php',
'PayPal\\EnhancedDataTypes\\EnhancedPayerInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedPayerInfoType.php',
'PayPal\\EnhancedDataTypes\\EnhancedPaymentDataType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedPaymentDataType.php',
'PayPal\\EnhancedDataTypes\\EnhancedPaymentInfoType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/EnhancedDataTypes/EnhancedPaymentInfoType.php',
'PayPal\\Exception\\OAuthException' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Exception/OAuthException.php',
'PayPal\\Exception\\PPConfigurationException' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Exception/PPConfigurationException.php',
'PayPal\\Exception\\PPConnectionException' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Exception/PPConnectionException.php',
'PayPal\\Exception\\PPInvalidCredentialException' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Exception/PPInvalidCredentialException.php',
'PayPal\\Exception\\PPMissingCredentialException' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Exception/PPMissingCredentialException.php',
'PayPal\\Exception\\PPTransformerException' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Exception/PPTransformerException.php',
'PayPal\\Exception\\PayPalConfigurationException' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalConfigurationException.php',
'PayPal\\Exception\\PayPalConnectionException' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalConnectionException.php',
'PayPal\\Exception\\PayPalInvalidCredentialException' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalInvalidCredentialException.php',
'PayPal\\Exception\\PayPalMissingCredentialException' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Exception/PayPalMissingCredentialException.php',
'PayPal\\Formatter\\FormatterFactory' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Formatter/FormatterFactory.php',
'PayPal\\Formatter\\IPPFormatter' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Formatter/IPPFormatter.php',
'PayPal\\Formatter\\PPNVPFormatter' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Formatter/PPNVPFormatter.php',
'PayPal\\Formatter\\PPSOAPFormatter' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Formatter/PPSOAPFormatter.php',
'PayPal\\Handler\\GenericSoapHandler' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Handler/GenericSoapHandler.php',
'PayPal\\Handler\\IPPHandler' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Handler/IPPHandler.php',
'PayPal\\Handler\\IPayPalHandler' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Handler/IPayPalHandler.php',
'PayPal\\Handler\\OauthHandler' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Handler/OauthHandler.php',
'PayPal\\Handler\\PPAuthenticationHandler' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Handler/PPAuthenticationHandler.php',
'PayPal\\Handler\\PPCertificateAuthHandler' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Handler/PPCertificateAuthHandler.php',
'PayPal\\Handler\\PPGenericServiceHandler' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Handler/PPGenericServiceHandler.php',
'PayPal\\Handler\\PPMerchantServiceHandler' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Handler/PPMerchantServiceHandler.php',
'PayPal\\Handler\\PPOpenIdHandler' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Handler/PPOpenIdHandler.php',
'PayPal\\Handler\\PPPlatformServiceHandler' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Handler/PPPlatformServiceHandler.php',
'PayPal\\Handler\\PPSignatureAuthHandler' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Handler/PPSignatureAuthHandler.php',
'PayPal\\Handler\\RestHandler' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Handler/RestHandler.php',
'PayPal\\IPN\\PPIPNMessage' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/IPN/PPIPNMessage.php',
'PayPal\\Log\\PayPalDefaultLogFactory' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Log/PayPalDefaultLogFactory.php',
'PayPal\\Log\\PayPalLogFactory' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Log/PayPalLogFactory.php',
'PayPal\\Log\\PayPalLogger' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Log/PayPalLogger.php',
'PayPal\\PayPalAPI\\AddressVerifyReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/AddressVerifyReq.php',
'PayPal\\PayPalAPI\\AddressVerifyRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/AddressVerifyRequestType.php',
'PayPal\\PayPalAPI\\AddressVerifyResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/AddressVerifyResponseType.php',
'PayPal\\PayPalAPI\\BAUpdateRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BAUpdateRequestType.php',
'PayPal\\PayPalAPI\\BAUpdateResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BAUpdateResponseType.php',
'PayPal\\PayPalAPI\\BMButtonSearchReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMButtonSearchReq.php',
'PayPal\\PayPalAPI\\BMButtonSearchRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMButtonSearchRequestType.php',
'PayPal\\PayPalAPI\\BMButtonSearchResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMButtonSearchResponseType.php',
'PayPal\\PayPalAPI\\BMCreateButtonReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMCreateButtonReq.php',
'PayPal\\PayPalAPI\\BMCreateButtonRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMCreateButtonRequestType.php',
'PayPal\\PayPalAPI\\BMCreateButtonResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMCreateButtonResponseType.php',
'PayPal\\PayPalAPI\\BMGetButtonDetailsReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMGetButtonDetailsReq.php',
'PayPal\\PayPalAPI\\BMGetButtonDetailsRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMGetButtonDetailsRequestType.php',
'PayPal\\PayPalAPI\\BMGetButtonDetailsResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMGetButtonDetailsResponseType.php',
'PayPal\\PayPalAPI\\BMGetInventoryReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMGetInventoryReq.php',
'PayPal\\PayPalAPI\\BMGetInventoryRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMGetInventoryRequestType.php',
'PayPal\\PayPalAPI\\BMGetInventoryResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMGetInventoryResponseType.php',
'PayPal\\PayPalAPI\\BMManageButtonStatusReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMManageButtonStatusReq.php',
'PayPal\\PayPalAPI\\BMManageButtonStatusRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMManageButtonStatusRequestType.php',
'PayPal\\PayPalAPI\\BMManageButtonStatusResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMManageButtonStatusResponseType.php',
'PayPal\\PayPalAPI\\BMSetInventoryReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMSetInventoryReq.php',
'PayPal\\PayPalAPI\\BMSetInventoryRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMSetInventoryRequestType.php',
'PayPal\\PayPalAPI\\BMSetInventoryResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMSetInventoryResponseType.php',
'PayPal\\PayPalAPI\\BMUpdateButtonReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMUpdateButtonReq.php',
'PayPal\\PayPalAPI\\BMUpdateButtonRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMUpdateButtonRequestType.php',
'PayPal\\PayPalAPI\\BMUpdateButtonResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BMUpdateButtonResponseType.php',
'PayPal\\PayPalAPI\\BillAgreementUpdateReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillAgreementUpdateReq.php',
'PayPal\\PayPalAPI\\BillOutstandingAmountReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillOutstandingAmountReq.php',
'PayPal\\PayPalAPI\\BillOutstandingAmountRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillOutstandingAmountRequestType.php',
'PayPal\\PayPalAPI\\BillOutstandingAmountResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillOutstandingAmountResponseType.php',
'PayPal\\PayPalAPI\\BillUserReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillUserReq.php',
'PayPal\\PayPalAPI\\BillUserRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillUserRequestType.php',
'PayPal\\PayPalAPI\\BillUserResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/BillUserResponseType.php',
'PayPal\\PayPalAPI\\CancelRecoupReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CancelRecoupReq.php',
'PayPal\\PayPalAPI\\CancelRecoupRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CancelRecoupRequestType.php',
'PayPal\\PayPalAPI\\CancelRecoupResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CancelRecoupResponseType.php',
'PayPal\\PayPalAPI\\CompleteRecoupReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CompleteRecoupReq.php',
'PayPal\\PayPalAPI\\CompleteRecoupRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CompleteRecoupRequestType.php',
'PayPal\\PayPalAPI\\CompleteRecoupResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CompleteRecoupResponseType.php',
'PayPal\\PayPalAPI\\CreateBillingAgreementReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateBillingAgreementReq.php',
'PayPal\\PayPalAPI\\CreateBillingAgreementRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateBillingAgreementRequestType.php',
'PayPal\\PayPalAPI\\CreateBillingAgreementResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateBillingAgreementResponseType.php',
'PayPal\\PayPalAPI\\CreateMobilePaymentReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateMobilePaymentReq.php',
'PayPal\\PayPalAPI\\CreateMobilePaymentRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateMobilePaymentRequestType.php',
'PayPal\\PayPalAPI\\CreateMobilePaymentResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateMobilePaymentResponseType.php',
'PayPal\\PayPalAPI\\CreateRecurringPaymentsProfileReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateRecurringPaymentsProfileReq.php',
'PayPal\\PayPalAPI\\CreateRecurringPaymentsProfileRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateRecurringPaymentsProfileRequestType.php',
'PayPal\\PayPalAPI\\CreateRecurringPaymentsProfileResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/CreateRecurringPaymentsProfileResponseType.php',
'PayPal\\PayPalAPI\\DoAuthorizationReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoAuthorizationReq.php',
'PayPal\\PayPalAPI\\DoAuthorizationRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoAuthorizationRequestType.php',
'PayPal\\PayPalAPI\\DoAuthorizationResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoAuthorizationResponseType.php',
'PayPal\\PayPalAPI\\DoCancelReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoCancelReq.php',
'PayPal\\PayPalAPI\\DoCancelRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoCancelRequestType.php',
'PayPal\\PayPalAPI\\DoCancelResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoCancelResponseType.php',
'PayPal\\PayPalAPI\\DoCaptureReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoCaptureReq.php',
'PayPal\\PayPalAPI\\DoCaptureRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoCaptureRequestType.php',
'PayPal\\PayPalAPI\\DoCaptureResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoCaptureResponseType.php',
'PayPal\\PayPalAPI\\DoDirectPaymentReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoDirectPaymentReq.php',
'PayPal\\PayPalAPI\\DoDirectPaymentRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoDirectPaymentRequestType.php',
'PayPal\\PayPalAPI\\DoDirectPaymentResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoDirectPaymentResponseType.php',
'PayPal\\PayPalAPI\\DoExpressCheckoutPaymentReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoExpressCheckoutPaymentReq.php',
'PayPal\\PayPalAPI\\DoExpressCheckoutPaymentRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoExpressCheckoutPaymentRequestType.php',
'PayPal\\PayPalAPI\\DoExpressCheckoutPaymentResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoExpressCheckoutPaymentResponseType.php',
'PayPal\\PayPalAPI\\DoMobileCheckoutPaymentReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoMobileCheckoutPaymentReq.php',
'PayPal\\PayPalAPI\\DoMobileCheckoutPaymentRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoMobileCheckoutPaymentRequestType.php',
'PayPal\\PayPalAPI\\DoMobileCheckoutPaymentResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoMobileCheckoutPaymentResponseType.php',
'PayPal\\PayPalAPI\\DoNonReferencedCreditReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoNonReferencedCreditReq.php',
'PayPal\\PayPalAPI\\DoNonReferencedCreditRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoNonReferencedCreditRequestType.php',
'PayPal\\PayPalAPI\\DoNonReferencedCreditResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoNonReferencedCreditResponseType.php',
'PayPal\\PayPalAPI\\DoReauthorizationReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoReauthorizationReq.php',
'PayPal\\PayPalAPI\\DoReauthorizationRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoReauthorizationRequestType.php',
'PayPal\\PayPalAPI\\DoReauthorizationResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoReauthorizationResponseType.php',
'PayPal\\PayPalAPI\\DoReferenceTransactionReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoReferenceTransactionReq.php',
'PayPal\\PayPalAPI\\DoReferenceTransactionRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoReferenceTransactionRequestType.php',
'PayPal\\PayPalAPI\\DoReferenceTransactionResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoReferenceTransactionResponseType.php',
'PayPal\\PayPalAPI\\DoUATPAuthorizationReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoUATPAuthorizationReq.php',
'PayPal\\PayPalAPI\\DoUATPAuthorizationRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoUATPAuthorizationRequestType.php',
'PayPal\\PayPalAPI\\DoUATPAuthorizationResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoUATPAuthorizationResponseType.php',
'PayPal\\PayPalAPI\\DoUATPExpressCheckoutPaymentReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoUATPExpressCheckoutPaymentReq.php',
'PayPal\\PayPalAPI\\DoUATPExpressCheckoutPaymentRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoUATPExpressCheckoutPaymentRequestType.php',
'PayPal\\PayPalAPI\\DoUATPExpressCheckoutPaymentResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoUATPExpressCheckoutPaymentResponseType.php',
'PayPal\\PayPalAPI\\DoVoidReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoVoidReq.php',
'PayPal\\PayPalAPI\\DoVoidRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoVoidRequestType.php',
'PayPal\\PayPalAPI\\DoVoidResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/DoVoidResponseType.php',
'PayPal\\PayPalAPI\\EnterBoardingReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/EnterBoardingReq.php',
'PayPal\\PayPalAPI\\EnterBoardingRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/EnterBoardingRequestType.php',
'PayPal\\PayPalAPI\\EnterBoardingResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/EnterBoardingResponseType.php',
'PayPal\\PayPalAPI\\ExecuteCheckoutOperationsReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ExecuteCheckoutOperationsReq.php',
'PayPal\\PayPalAPI\\ExecuteCheckoutOperationsRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ExecuteCheckoutOperationsRequestType.php',
'PayPal\\PayPalAPI\\ExecuteCheckoutOperationsResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ExecuteCheckoutOperationsResponseType.php',
'PayPal\\PayPalAPI\\ExternalRememberMeOptOutReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ExternalRememberMeOptOutReq.php',
'PayPal\\PayPalAPI\\ExternalRememberMeOptOutRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ExternalRememberMeOptOutRequestType.php',
'PayPal\\PayPalAPI\\ExternalRememberMeOptOutResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ExternalRememberMeOptOutResponseType.php',
'PayPal\\PayPalAPI\\GetAccessPermissionDetailsReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetAccessPermissionDetailsReq.php',
'PayPal\\PayPalAPI\\GetAccessPermissionDetailsRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetAccessPermissionDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetAccessPermissionDetailsResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetAccessPermissionDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetAuthDetailsReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetAuthDetailsReq.php',
'PayPal\\PayPalAPI\\GetAuthDetailsRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetAuthDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetAuthDetailsResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetAuthDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetBalanceReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBalanceReq.php',
'PayPal\\PayPalAPI\\GetBalanceRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBalanceRequestType.php',
'PayPal\\PayPalAPI\\GetBalanceResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBalanceResponseType.php',
'PayPal\\PayPalAPI\\GetBillingAgreementCustomerDetailsReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBillingAgreementCustomerDetailsReq.php',
'PayPal\\PayPalAPI\\GetBillingAgreementCustomerDetailsRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBillingAgreementCustomerDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetBillingAgreementCustomerDetailsResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBillingAgreementCustomerDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetBoardingDetailsReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBoardingDetailsReq.php',
'PayPal\\PayPalAPI\\GetBoardingDetailsRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBoardingDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetBoardingDetailsResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetBoardingDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetExpressCheckoutDetailsReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetExpressCheckoutDetailsReq.php',
'PayPal\\PayPalAPI\\GetExpressCheckoutDetailsRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetExpressCheckoutDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetExpressCheckoutDetailsResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetExpressCheckoutDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetIncentiveEvaluationReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetIncentiveEvaluationReq.php',
'PayPal\\PayPalAPI\\GetIncentiveEvaluationRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetIncentiveEvaluationRequestType.php',
'PayPal\\PayPalAPI\\GetIncentiveEvaluationResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetIncentiveEvaluationResponseType.php',
'PayPal\\PayPalAPI\\GetMobileStatusReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetMobileStatusReq.php',
'PayPal\\PayPalAPI\\GetMobileStatusRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetMobileStatusRequestType.php',
'PayPal\\PayPalAPI\\GetMobileStatusResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetMobileStatusResponseType.php',
'PayPal\\PayPalAPI\\GetPalDetailsReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetPalDetailsReq.php',
'PayPal\\PayPalAPI\\GetPalDetailsRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetPalDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetPalDetailsResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetPalDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetRecurringPaymentsProfileDetailsReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetRecurringPaymentsProfileDetailsReq.php',
'PayPal\\PayPalAPI\\GetRecurringPaymentsProfileDetailsRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetRecurringPaymentsProfileDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetRecurringPaymentsProfileDetailsResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetRecurringPaymentsProfileDetailsResponseType.php',
'PayPal\\PayPalAPI\\GetTransactionDetailsReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetTransactionDetailsReq.php',
'PayPal\\PayPalAPI\\GetTransactionDetailsRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetTransactionDetailsRequestType.php',
'PayPal\\PayPalAPI\\GetTransactionDetailsResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/GetTransactionDetailsResponseType.php',
'PayPal\\PayPalAPI\\InitiateRecoupReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/InitiateRecoupReq.php',
'PayPal\\PayPalAPI\\InitiateRecoupRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/InitiateRecoupRequestType.php',
'PayPal\\PayPalAPI\\InitiateRecoupResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/InitiateRecoupResponseType.php',
'PayPal\\PayPalAPI\\InstallmentDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/InstallmentDetailsType.php',
'PayPal\\PayPalAPI\\ManagePendingTransactionStatusReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ManagePendingTransactionStatusReq.php',
'PayPal\\PayPalAPI\\ManagePendingTransactionStatusRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ManagePendingTransactionStatusRequestType.php',
'PayPal\\PayPalAPI\\ManagePendingTransactionStatusResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ManagePendingTransactionStatusResponseType.php',
'PayPal\\PayPalAPI\\ManageRecurringPaymentsProfileStatusReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ManageRecurringPaymentsProfileStatusReq.php',
'PayPal\\PayPalAPI\\ManageRecurringPaymentsProfileStatusRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ManageRecurringPaymentsProfileStatusRequestType.php',
'PayPal\\PayPalAPI\\ManageRecurringPaymentsProfileStatusResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ManageRecurringPaymentsProfileStatusResponseType.php',
'PayPal\\PayPalAPI\\MassPayReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/MassPayReq.php',
'PayPal\\PayPalAPI\\MassPayRequestItemType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/MassPayRequestItemType.php',
'PayPal\\PayPalAPI\\MassPayRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/MassPayRequestType.php',
'PayPal\\PayPalAPI\\MassPayResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/MassPayResponseType.php',
'PayPal\\PayPalAPI\\OptionDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/OptionDetailsType.php',
'PayPal\\PayPalAPI\\OptionSelectionDetailsType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/OptionSelectionDetailsType.php',
'PayPal\\PayPalAPI\\RefundTransactionReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/RefundTransactionReq.php',
'PayPal\\PayPalAPI\\RefundTransactionRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/RefundTransactionRequestType.php',
'PayPal\\PayPalAPI\\RefundTransactionResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/RefundTransactionResponseType.php',
'PayPal\\PayPalAPI\\ReverseTransactionReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ReverseTransactionReq.php',
'PayPal\\PayPalAPI\\ReverseTransactionRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ReverseTransactionRequestType.php',
'PayPal\\PayPalAPI\\ReverseTransactionResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/ReverseTransactionResponseType.php',
'PayPal\\PayPalAPI\\SetAccessPermissionsReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetAccessPermissionsReq.php',
'PayPal\\PayPalAPI\\SetAccessPermissionsRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetAccessPermissionsRequestType.php',
'PayPal\\PayPalAPI\\SetAccessPermissionsResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetAccessPermissionsResponseType.php',
'PayPal\\PayPalAPI\\SetAuthFlowParamReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetAuthFlowParamReq.php',
'PayPal\\PayPalAPI\\SetAuthFlowParamRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetAuthFlowParamRequestType.php',
'PayPal\\PayPalAPI\\SetAuthFlowParamResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetAuthFlowParamResponseType.php',
'PayPal\\PayPalAPI\\SetCustomerBillingAgreementReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetCustomerBillingAgreementReq.php',
'PayPal\\PayPalAPI\\SetCustomerBillingAgreementRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetCustomerBillingAgreementRequestType.php',
'PayPal\\PayPalAPI\\SetCustomerBillingAgreementResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetCustomerBillingAgreementResponseType.php',
'PayPal\\PayPalAPI\\SetExpressCheckoutReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetExpressCheckoutReq.php',
'PayPal\\PayPalAPI\\SetExpressCheckoutRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetExpressCheckoutRequestType.php',
'PayPal\\PayPalAPI\\SetExpressCheckoutResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetExpressCheckoutResponseType.php',
'PayPal\\PayPalAPI\\SetMobileCheckoutReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetMobileCheckoutReq.php',
'PayPal\\PayPalAPI\\SetMobileCheckoutRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetMobileCheckoutRequestType.php',
'PayPal\\PayPalAPI\\SetMobileCheckoutResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/SetMobileCheckoutResponseType.php',
'PayPal\\PayPalAPI\\TransactionSearchReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/TransactionSearchReq.php',
'PayPal\\PayPalAPI\\TransactionSearchRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/TransactionSearchRequestType.php',
'PayPal\\PayPalAPI\\TransactionSearchResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/TransactionSearchResponseType.php',
'PayPal\\PayPalAPI\\UpdateAccessPermissionsReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateAccessPermissionsReq.php',
'PayPal\\PayPalAPI\\UpdateAccessPermissionsRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateAccessPermissionsRequestType.php',
'PayPal\\PayPalAPI\\UpdateAccessPermissionsResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateAccessPermissionsResponseType.php',
'PayPal\\PayPalAPI\\UpdateAuthorizationReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateAuthorizationReq.php',
'PayPal\\PayPalAPI\\UpdateAuthorizationRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateAuthorizationRequestType.php',
'PayPal\\PayPalAPI\\UpdateAuthorizationResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateAuthorizationResponseType.php',
'PayPal\\PayPalAPI\\UpdateRecurringPaymentsProfileReq' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateRecurringPaymentsProfileReq.php',
'PayPal\\PayPalAPI\\UpdateRecurringPaymentsProfileRequestType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateRecurringPaymentsProfileRequestType.php',
'PayPal\\PayPalAPI\\UpdateRecurringPaymentsProfileResponseType' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/PayPalAPI/UpdateRecurringPaymentsProfileResponseType.php',
'PayPal\\Rest\\ApiContext' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Rest/ApiContext.php',
'PayPal\\Rest\\IResource' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Rest/IResource.php',
'PayPal\\Security\\Cipher' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Security/Cipher.php',
'PayPal\\Service\\PayPalAPIInterfaceServiceService' => __DIR__ . '/..' . '/paypal/merchant-sdk-php/lib/PayPal/Service/PayPalAPIInterfaceServiceService.php',
'PayPal\\Service\\PermissionsService' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Service/PermissionsService.php',
'PayPal\\Transport\\PPRestCall' => __DIR__ . '/..' . '/paypal/sdk-core-php/lib/PayPal/Transport/PPRestCall.php',
'PayPal\\Transport\\PayPalRestCall' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Transport/PayPalRestCall.php',
'PayPal\\Types\\Common\\ErrorData' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Common/ErrorData.php',
'PayPal\\Types\\Common\\ErrorParameter' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Common/ErrorParameter.php',
'PayPal\\Types\\Common\\FaultMessage' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Common/FaultMessage.php',
'PayPal\\Types\\Common\\RequestEnvelope' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Common/RequestEnvelope.php',
'PayPal\\Types\\Common\\ResponseEnvelope' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Common/ResponseEnvelope.php',
'PayPal\\Types\\Perm\\CancelPermissionsRequest' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/CancelPermissionsRequest.php',
'PayPal\\Types\\Perm\\CancelPermissionsResponse' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/CancelPermissionsResponse.php',
'PayPal\\Types\\Perm\\GetAccessTokenRequest' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetAccessTokenRequest.php',
'PayPal\\Types\\Perm\\GetAccessTokenResponse' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetAccessTokenResponse.php',
'PayPal\\Types\\Perm\\GetAdvancedPersonalDataRequest' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetAdvancedPersonalDataRequest.php',
'PayPal\\Types\\Perm\\GetAdvancedPersonalDataResponse' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetAdvancedPersonalDataResponse.php',
'PayPal\\Types\\Perm\\GetBasicPersonalDataRequest' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetBasicPersonalDataRequest.php',
'PayPal\\Types\\Perm\\GetBasicPersonalDataResponse' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetBasicPersonalDataResponse.php',
'PayPal\\Types\\Perm\\GetPermissionsRequest' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetPermissionsRequest.php',
'PayPal\\Types\\Perm\\GetPermissionsResponse' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/GetPermissionsResponse.php',
'PayPal\\Types\\Perm\\PersonalAttributeList' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/PersonalAttributeList.php',
'PayPal\\Types\\Perm\\PersonalData' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/PersonalData.php',
'PayPal\\Types\\Perm\\PersonalDataList' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/PersonalDataList.php',
'PayPal\\Types\\Perm\\RequestPermissionsRequest' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/RequestPermissionsRequest.php',
'PayPal\\Types\\Perm\\RequestPermissionsResponse' => __DIR__ . '/..' . '/paypal/permissions-sdk-php/lib/PayPal/Types/Perm/RequestPermissionsResponse.php',
'PayPal\\Validation\\ArgumentValidator' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Validation/ArgumentValidator.php',
'PayPal\\Validation\\JsonValidator' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Validation/JsonValidator.php',
'PayPal\\Validation\\NumericValidator' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Validation/NumericValidator.php',
'PayPal\\Validation\\UrlValidator' => __DIR__ . '/..' . '/paypal/rest-api-sdk-php/lib/PayPal/Validation/UrlValidator.php',
'PaypalAddons\\classes\\AdminPayPalController' => __DIR__ . '/../..' . '/classes/AdminPayPalController.php',
'PaypalAddons\\classes\\PaypalException' => __DIR__ . '/../..' . '/classes/PaypalException.php',
'PaypalAddons\\services\\ServicePaypalIpn' => __DIR__ . '/../..' . '/services/ServicePaypalIpn.php',
'PaypalAddons\\services\\ServicePaypalLog' => __DIR__ . '/../..' . '/services/ServicePaypalLog.php',
'PaypalAddons\\services\\ServicePaypalOrder' => __DIR__ . '/../..' . '/services/ServicePaypalOrder.php',
'PaypalAddons\\services\\ServicePaypalVaulting' => __DIR__ . '/../..' . '/services/ServicePaypalVaulting.php',
'PaypalPPBTlib\\AbstractMethod' => __DIR__ . '/..' . '/ppbtlib/src/AbstractMethod.php',
'PaypalPPBTlib\\CommonAbstarctModuleFrontController' => __DIR__ . '/..' . '/ppbtlib/src/CommonAbstarctModuleFrontController.php',
'PaypalPPBTlib\\Db\\DbSchema' => __DIR__ . '/..' . '/ppbtlib/src/Db/DbSchema.php',
'PaypalPPBTlib\\Db\\DbTable' => __DIR__ . '/..' . '/ppbtlib/src/Db/DbTable.php',
'PaypalPPBTlib\\Db\\DbTableDefinitionModel' => __DIR__ . '/..' . '/ppbtlib/src/Db/DbTableDefinitionModel.php',
'PaypalPPBTlib\\Db\\DbTableDefinitionRelation' => __DIR__ . '/..' . '/ppbtlib/src/Db/DbTableDefinitionRelation.php',
'PaypalPPBTlib\\Db\\ObjectModelDefinition' => __DIR__ . '/..' . '/ppbtlib/src/Db/ObjectModelDefinition.php',
'PaypalPPBTlib\\Db\\ObjectModelExtension' => __DIR__ . '/..' . '/ppbtlib/src/Db/ObjectModelExtension.php',
'PaypalPPBTlib\\Extensions\\AbstractModuleExtension' => __DIR__ . '/..' . '/ppbtlib/src/Extensions/AbstractModuleExtension.php',
'PaypalPPBTlib\\Extensions\\ProcessLogger\\Classes\\ProcessLoggerObjectModel' => __DIR__ . '/..' . '/ppbtlib/src/Extensions/ProcessLogger/Classes/ProcessLoggerObjectModel.php',
'PaypalPPBTlib\\Extensions\\ProcessLogger\\Controllers\\Admin\\AdminProcessLoggerController' => __DIR__ . '/..' . '/ppbtlib/src/Extensions/ProcessLogger/Controllers/Admin/AdminProcessLoggerController.php',
'PaypalPPBTlib\\Extensions\\ProcessLogger\\ProcessLoggerExtension' => __DIR__ . '/..' . '/ppbtlib/src/Extensions/ProcessLogger/ProcessLoggerExtension.php',
'PaypalPPBTlib\\Extensions\\ProcessLogger\\ProcessLoggerHandler' => __DIR__ . '/..' . '/ppbtlib/src/Extensions/ProcessLogger/ProcessLoggerHandler.php',
'PaypalPPBTlib\\Install\\AbstractInstaller' => __DIR__ . '/..' . '/ppbtlib/src/Install/AbstractInstaller.php',
'PaypalPPBTlib\\Install\\ExtensionInstaller' => __DIR__ . '/..' . '/ppbtlib/src/Install/ExtensionInstaller.php',
'PaypalPPBTlib\\Install\\ModuleInstaller' => __DIR__ . '/..' . '/ppbtlib/src/Install/ModuleInstaller.php',
'Psr\\Log\\AbstractLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/AbstractLogger.php',
'Psr\\Log\\InvalidArgumentException' => __DIR__ . '/..' . '/psr/log/Psr/Log/InvalidArgumentException.php',
'Psr\\Log\\LogLevel' => __DIR__ . '/..' . '/psr/log/Psr/Log/LogLevel.php',
'Psr\\Log\\LoggerAwareInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareInterface.php',
'Psr\\Log\\LoggerAwareTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerAwareTrait.php',
'Psr\\Log\\LoggerInterface' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerInterface.php',
'Psr\\Log\\LoggerTrait' => __DIR__ . '/..' . '/psr/log/Psr/Log/LoggerTrait.php',
'Psr\\Log\\NullLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/NullLogger.php',
'Psr\\Log\\Test\\DummyTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
'Psr\\Log\\Test\\LoggerInterfaceTest' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
'Psr\\Log\\Test\\TestLogger' => __DIR__ . '/..' . '/psr/log/Psr/Log/Test/TestLogger.php',
);
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInit80c4cc856b12233631c411b9f5edcebd::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit80c4cc856b12233631c411b9f5edcebd::$prefixDirsPsr4;
$loader->prefixesPsr0 = ComposerStaticInit80c4cc856b12233631c411b9f5edcebd::$prefixesPsr0;
$loader->prefixLengthsPsr4 = ComposerStaticInit9e3de0f5fa28c53609761907f94c17da::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit9e3de0f5fa28c53609761907f94c17da::$prefixDirsPsr4;
$loader->prefixesPsr0 = ComposerStaticInit9e3de0f5fa28c53609761907f94c17da::$prefixesPsr0;
$loader->classMap = ComposerStaticInit9e3de0f5fa28c53609761907f94c17da::$classMap;
}, null, ClassLoader::class);
}

View File

@@ -1,52 +1,4 @@
[
{
"name": "paypal/sdk-core-php",
"version": "3.4.0",
"version_normalized": "3.4.0.0",
"source": {
"type": "git",
"url": "https://github.com/paypal/sdk-core-php.git",
"reference": "d2174f69f9811a8f2e79af7498fdf89586457d76"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/paypal/sdk-core-php/zipball/d2174f69f9811a8f2e79af7498fdf89586457d76",
"reference": "d2174f69f9811a8f2e79af7498fdf89586457d76",
"shasum": ""
},
"require": {
"ext-curl": "*",
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"time": "2017-11-13 18:53:13",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-0": {
"PayPal": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"Apache-2.0"
],
"authors": [
{
"name": "PayPal",
"homepage": "https://github.com/paypal/sdk-core-php/contributors"
}
],
"description": "PayPal Core SDK for PHP",
"homepage": "https://github.com/paypal/sdk-core-php",
"keywords": [
"paypal",
"php",
"sdk"
]
},
{
"name": "paypal/merchant-sdk-php",
"version": "v3.12.0",
@@ -67,7 +19,7 @@
"paypal/sdk-core-php": "3.*",
"php": ">=5.3.0"
},
"time": "2017-10-10 19:03:05",
"time": "2017-10-10T19:03:05+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -97,55 +49,6 @@
"sdk"
]
},
{
"name": "braintree/braintree_php",
"version": "3.40.0",
"version_normalized": "3.40.0.0",
"source": {
"type": "git",
"url": "https://github.com/braintree/braintree_php.git",
"reference": "840fc6ebf8d96756fed475cce94565fef178187d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/braintree/braintree_php/zipball/840fc6ebf8d96756fed475cce94565fef178187d",
"reference": "840fc6ebf8d96756fed475cce94565fef178187d",
"shasum": ""
},
"require": {
"ext-curl": "*",
"ext-dom": "*",
"ext-hash": "*",
"ext-openssl": "*",
"ext-xmlwriter": "*",
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"time": "2019-03-28 23:16:53",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-0": {
"Braintree": "lib/"
},
"psr-4": {
"Braintree\\": "lib/Braintree"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Braintree",
"homepage": "https://www.braintreepayments.com"
}
],
"description": "Braintree PHP Client Library"
},
{
"name": "paypal/permissions-sdk-php",
"version": "v3.9.1",
@@ -166,7 +69,7 @@
"paypal/sdk-core-php": "3.*",
"php": ">=5.3.0"
},
"time": "2015-12-09 18:01:09",
"time": "2015-12-09T18:01:09+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
@@ -193,6 +96,105 @@
"sdk"
]
},
{
"name": "paypal/rest-api-sdk-php",
"version": "1.14.0",
"version_normalized": "1.14.0.0",
"source": {
"type": "git",
"url": "https://github.com/paypal/PayPal-PHP-SDK.git",
"reference": "72e2f2466975bf128a31e02b15110180f059fc04"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/paypal/PayPal-PHP-SDK/zipball/72e2f2466975bf128a31e02b15110180f059fc04",
"reference": "72e2f2466975bf128a31e02b15110180f059fc04",
"shasum": ""
},
"require": {
"ext-curl": "*",
"ext-json": "*",
"php": ">=5.3.0",
"psr/log": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35"
},
"time": "2019-01-04T20:04:25+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-0": {
"PayPal": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"Apache-2.0"
],
"authors": [
{
"name": "PayPal",
"homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
}
],
"description": "PayPal's PHP SDK for REST APIs",
"homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
"keywords": [
"payments",
"paypal",
"rest",
"sdk"
]
},
{
"name": "paypal/sdk-core-php",
"version": "3.4.0",
"version_normalized": "3.4.0.0",
"source": {
"type": "git",
"url": "https://github.com/paypal/sdk-core-php.git",
"reference": "d2174f69f9811a8f2e79af7498fdf89586457d76"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/paypal/sdk-core-php/zipball/d2174f69f9811a8f2e79af7498fdf89586457d76",
"reference": "d2174f69f9811a8f2e79af7498fdf89586457d76",
"shasum": ""
},
"require": {
"ext-curl": "*",
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"time": "2017-11-13T18:53:13+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-0": {
"PayPal": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"Apache-2.0"
],
"authors": [
{
"name": "PayPal",
"homepage": "https://github.com/paypal/sdk-core-php/contributors"
}
],
"description": "PayPal Core SDK for PHP",
"homepage": "https://github.com/paypal/sdk-core-php",
"keywords": [
"paypal",
"php",
"sdk"
]
},
{
"name": "psr/log",
"version": "1.1.0",
@@ -211,7 +213,7 @@
"require": {
"php": ">=5.3.0"
},
"time": "2018-11-20 15:27:04",
"time": "2018-11-20T15:27:04+00:00",
"type": "library",
"extra": {
"branch-alias": {
@@ -241,56 +243,5 @@
"psr",
"psr-3"
]
},
{
"name": "paypal/rest-api-sdk-php",
"version": "1.14.0",
"version_normalized": "1.14.0.0",
"source": {
"type": "git",
"url": "https://github.com/paypal/PayPal-PHP-SDK.git",
"reference": "72e2f2466975bf128a31e02b15110180f059fc04"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/paypal/PayPal-PHP-SDK/zipball/72e2f2466975bf128a31e02b15110180f059fc04",
"reference": "72e2f2466975bf128a31e02b15110180f059fc04",
"shasum": ""
},
"require": {
"ext-curl": "*",
"ext-json": "*",
"php": ">=5.3.0",
"psr/log": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35"
},
"time": "2019-01-04 20:04:25",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-0": {
"PayPal": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"Apache-2.0"
],
"authors": [
{
"name": "PayPal",
"homepage": "https://github.com/paypal/rest-api-sdk-php/contributors"
}
],
"description": "PayPal's PHP SDK for REST APIs",
"homepage": "http://paypal.github.io/PayPal-PHP-SDK/",
"keywords": [
"payments",
"paypal",
"rest",
"sdk"
]
}
]

View File

@@ -18,10 +18,11 @@
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2019 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
* @author 2007-2019 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*
*/
namespace PaypalPPBTlib;
@@ -70,10 +71,10 @@ abstract class AbstractMethod
/**
* Refund settled transaction
* @param $orderPayPal PaypalOrder object
* @param $orderPaypal PaypalOrder object
* @return mixed
*/
abstract public function refund($orderPayPal);
abstract public function refund($orderPaypal);
/**
* Update configuration (postProcess)
@@ -91,10 +92,10 @@ abstract class AbstractMethod
/**
* Void authorized transaction (cancel payment)
* @param $orderPayPal PaypalOrder object
* @param $orderPaypal PaypalOrder object
* @return mixed
*/
abstract public function void($orderPayPal);
abstract public function void($orderPaypal);
/**
* @param $params array hookActionOrderSlipAdd parameters
@@ -133,9 +134,8 @@ abstract class AbstractMethod
/**
* Get link to transaction
* @param string $id_transaction
* @param bool $sandbox mode (sandbox/live)
* @param \PaypalLog $log
* @return string
*/
abstract public function getLinkToTransaction($id_transaction, $sandbox);
abstract public function getLinkToTransaction($log);
}

View File

@@ -18,10 +18,11 @@
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2019 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
* @author 2007-2019 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*
*/
namespace PaypalPPBTlib;
@@ -56,21 +57,30 @@ abstract class CommonAbstarctModuleFrontController extends ModuleFrontController
{
$this->init();
if ($this->checkAccess()) {
// postProcess handles ajaxProcess
$this->postProcess();
if ($this->ajax) {
$this->ajaxProcess();
} else {
$this->postProcess();
}
}
if (empty($this->errors) == false) {
$message = '';
if (isset($this->errors['error_code'])) {
$message .= 'Error code: ' . $this->errors['error_code'] . '.';
$message .= 'Error code: ' . $this->errors['error_code'] . ';';
}
if (isset($this->errors['error_msg']) && $this->errors['error_msg']) {
$message .= 'Short message: ' . $this->errors['error_msg'] . '.';
}
if (isset($this->errors['msg_long']) && $this->errors['msg_long']) {
$message .= 'Long message: ' . $this->errors['msg_long'] . '.';
if (isset($this->errors['logger_msg'])) {
$message .= 'Short message: ' . $this->errors['logger_msg'] . ';';
} else {
if (isset($this->errors['error_msg']) && $this->errors['error_msg']) {
$message .= 'Short message: ' . $this->errors['error_msg'] . ';';
}
if (isset($this->errors['msg_long']) && $this->errors['msg_long']) {
$message .= 'Long message: ' . $this->errors['msg_long'] . ';';
}
}
ProcessLoggerHandler::openLogger();
ProcessLoggerHandler::logError(
$message,
@@ -86,11 +96,35 @@ abstract class CommonAbstarctModuleFrontController extends ModuleFrontController
}
if (!empty($this->redirectUrl)) {
\Tools::redirect($this->redirectUrl);
$this->redirectWithNotifications($this->redirectUrl);
}
if (!empty($this->jsonValues)) {
$response = new JsonResponse($this->jsonValues);
return $response->send();
}
}
public function init()
{
parent::init();
if (\Tools::getValue('ajax')) {
$this->ajax = true;
} else {
$this->ajax = false;
}
}
public function ajaxProcess()
{
if (\Tools::isSubmit('action') == false) {
return false;
}
$method = 'displayAjax' . \Tools::getValue('action');
if (method_exists($this, $method)) {
return call_user_func(array($this, $method));
}
}
}

View File

@@ -18,8 +18,8 @@
* ...........................................................................
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @version develop
*/

View File

@@ -18,8 +18,8 @@
* ...........................................................................
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @version develop
*/

View File

@@ -18,8 +18,8 @@
* ...........................................................................
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @version develop
*/

View File

@@ -18,8 +18,8 @@
* ...........................................................................
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @version develop
*/

View File

@@ -18,8 +18,8 @@
* ...........................................................................
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @version develop
*/

View File

@@ -18,8 +18,8 @@
* ...........................................................................
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @version develop
*/

View File

@@ -18,10 +18,11 @@
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2019 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
* @author 2007-2019 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*
*/
namespace PaypalPPBTlib\Extensions;

View File

@@ -19,7 +19,7 @@
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @version develop
*/
@@ -123,7 +123,7 @@ class ProcessLoggerObjectModel extends ObjectModel
public function getDateTransaction()
{
if ($this->date_transaction == '0000-00-00 00:00:00') {
if ($this->date_transaction == '0000-00-00 00:00:00' || $this->date_transaction == false) {
return '';
}
$datetime1 = new \DateTime($this->date_transaction);
@@ -137,10 +137,16 @@ class ProcessLoggerObjectModel extends ObjectModel
}
if ($diff == 0) {
$diff = 'GMT';
} elseif ($diff > 0) {
$diff = "+" . $diff;
}
$dateTimeZone = new \DateTimeZone($diff);
$date = new \DateTime($this->date_transaction, $dateTimeZone);
return $date->format('Y-m-d H:i:s T');
try {
$dateTimeZone = new \DateTimeZone($diff);
$date = new \DateTime($this->date_transaction, $dateTimeZone);
return $date->format('Y-m-d H:i:s T');
} catch (\Exception $e) {
return '';
}
}
}

View File

@@ -19,7 +19,7 @@
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @version develop
*/
@@ -71,10 +71,7 @@ class AdminProcessLoggerController extends \ModuleAdminController
$this->bulk_actions = array(
'delete' => array(
'text' => $this->module->l('Delete selected', 'AdminProcessLoggerController'),
'confirm' => $this->module->l(
'Would you like to delete the selected items?',
'AdminProcessLoggerController'
),
'confirm' => $this->module->l('Would you like to delete the selected items?', 'AdminProcessLoggerController'),
)
);
@@ -131,34 +128,21 @@ class AdminProcessLoggerController extends \ModuleAdminController
'processLogger' => array(
'image' => '../img/admin/cog.gif',
'title' => $this->module->l('Process Logger Settings', 'AdminProcessLoggerController'),
'description' => $this->module->l(
'Here you can change the default configuration for this Process Logger',
'AdminProcessLoggerController'
'description' => $this->module->l('Here you can change the default configuration for this Process Logger', 'AdminProcessLoggerController'),
'info' => $this->module->displayWarning(
$this->module->l('Logs with order ID will not be erased.', 'AdminProcessLoggerController')
),
'info' => \Context::getContext()->smarty->fetch(_PS_MODULE_DIR_ . 'paypal/views/templates/admin/_partials/helperOptionInfo.tpl'),
'fields' => array(
'PAYPAL_EXTLOGS_ERASING_DISABLED' => array(
'title' => $this->module->l(
'Disable auto erasing',
'AdminProcessLoggerController'
),
'hint' => $this->module->l(
'If disabled, logs will be automatically erased after the delay',
'AdminProcessLoggerController'
),
'title' => $this->module->l('Disable auto erasing', 'AdminProcessLoggerController'),
'hint' => $this->module->l('If disabled, logs will be automatically erased after the delay', 'AdminProcessLoggerController'),
'validation' => 'isBool',
'cast' => 'intval',
'type' => 'bool',
),
'PAYPAL_EXTLOGS_ERASING_DAYSMAX' => array(
'title' => $this->module->l(
'Auto erasing delay (in days)',
'AdminProcessLoggerController'
),
'hint' => $this->module->l(
'Choose the number of days you want to keep logs in database',
'AdminProcessLoggerController'
),
'title' => $this->module->l('Auto erasing delay (in days)', 'AdminProcessLoggerController'),
'hint' => $this->module->l('Choose the number of days you want to keep logs in database', 'AdminProcessLoggerController'),
'validation' => 'isInt',
'cast' => 'intval',
'type' => 'text',
@@ -302,7 +286,7 @@ class AdminProcessLoggerController extends \ModuleAdminController
$result = Db::getInstance()->delete($this->table);
if ($result) {
$this->confirmations[] = $this->module->l('All logs has been erased', 'AdminProcessLoggerController');
$this->confirmations[] = $this->module->l('All logs have been erased', 'AdminProcessLoggerController');
}
return $result;
@@ -334,9 +318,7 @@ class AdminProcessLoggerController extends \ModuleAdminController
if (!is_numeric($extlogs_erasing_daysmax)) {
$this->errors[] = $this->module->l(
'You must specify a valid \"Auto erasing delay (in days)\" number.',
'AdminProcessLoggerController'
);
'You must specify a valid \"Auto erasing delay (in days)\" number.', 'AdminProcessLoggerController');
} else {
\Configuration::updateValue(
'PAYPAL_EXTLOGS_ERASING_DAYSMAX',
@@ -345,10 +327,7 @@ class AdminProcessLoggerController extends \ModuleAdminController
null,
$shop['id_shop']
);
$this->confirmations[] = $this->module->l(
'Log parameters are successfully updated!',
'AdminProcessLoggerController'
);
$this->confirmations[] = $this->module->l('Successful update.', 'AdminProcessLoggerController');
}
}

View File

@@ -19,7 +19,7 @@
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @version develop
*/
namespace PaypalPPBTlib\Extensions\ProcessLogger;
@@ -64,7 +64,7 @@ class ProcessLoggerExtension extends AbstractModuleExtension
$class_logger = ProcessLoggerObjectModel::class;
}
$collectionLogs = new \PrestaShopCollection($class_logger);
$collectionLogs->where('id_order', '=', $params['order']->id);
$collectionLogs->where('id_cart', '=', $params['order']->id_cart);
\Context::getContext()->smarty->assign('logs', $collectionLogs->getResults());
return \Context::getContext()->smarty->fetch(_PS_MODULE_DIR_ . 'paypal/views/templates/hook/displayAdminOrderContentOrder.tpl');
}
@@ -85,7 +85,7 @@ class ProcessLoggerExtension extends AbstractModuleExtension
/** @var $cart Cart */
$cart = $params['cart'];
$order = new \Order((int)\Order::getIdByCartId($cart->id));
if ($order->module != 'paypal') {
if (\Validate::isLoadedObject($order) && $order->module != 'paypal') {
return;
}
if (isset($params['class_logger']) && is_subclass_of($params['class_logger'], ProcessLoggerObjectModel::class)) {
@@ -95,6 +95,11 @@ class ProcessLoggerExtension extends AbstractModuleExtension
}
$collectionLogs = new \PrestaShopCollection($class_logger);
$collectionLogs->where('id_cart', '=', $params['cart']->id);
if ($collectionLogs->count() == 0) {
return;
}
\Context::getContext()->smarty->assign('logs', $collectionLogs->getResults());
return \Context::getContext()->smarty->fetch(_PS_MODULE_DIR_ . 'paypal/views/templates/hook/displayAdminCartsView.tpl');
}

View File

@@ -18,8 +18,8 @@
* ...........................................................................
*
* @author 202-ecommerce <tech@202-ecommerce.com>
* @copyright Copyright (c) 202-ecommerce
* @license Commercial license
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @version develop
*/

View File

@@ -18,10 +18,11 @@
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2019 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
* @author 2007-2019 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*
*/
namespace PaypalPPBTlib\Install;

View File

@@ -18,10 +18,11 @@
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2019 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
* @author 2007-2019 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*
*/
namespace PaypalPPBTlib\Install;

View File

@@ -18,10 +18,11 @@
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2019 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
* @author 2007-2019 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @copyright PayPal
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*
*/
namespace PaypalPPBTlib\Install;