vendor/pimcore/payment-provider-paypal-smart-payment-button/src/PimcorePaymentProviderPayPalSmartPaymentButtonBundle.php line 22

Open in your IDE?
  1. <?php
  2. /**
  3.  * Pimcore
  4.  *
  5.  * This source file is available under two different licenses:
  6.  * - GNU General Public License version 3 (GPLv3)
  7.  * - Pimcore Commercial License (PCL)
  8.  * Full copyright and license information is available in
  9.  * LICENSE.md which is distributed with this source code.
  10.  *
  11.  *  @copyright  Copyright (c) Pimcore GmbH (http://www.pimcore.org)
  12.  *  @license    http://www.pimcore.org/license     GPLv3 and PCL
  13.  */
  14. namespace Pimcore\Bundle\EcommerceFrameworkBundle;
  15. use Pimcore\Bundle\EcommerceFrameworkBundle\PayPalSmartPaymentButton\Installer;
  16. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  17. use Pimcore\Extension\Bundle\Traits\PackageVersionTrait;
  18. class PimcorePaymentProviderPayPalSmartPaymentButtonBundle extends AbstractPimcoreBundle
  19. {
  20.     use PackageVersionTrait;
  21.     /**
  22.      * {@inheritdoc}
  23.      */
  24.     protected function getComposerPackageName(): string
  25.     {
  26.         return 'pimcore/payment-provider-paypal-smart-payment-button';
  27.     }
  28.     public function getInstaller()
  29.     {
  30.         return $this->container->get(Installer::class);
  31.     }
  32. }