vendor/shopware/core/Checkout/Payment/SalesChannel/PaymentMethodRoute.php line 40
<?php declare(strict_types=1);namespace Shopware\Core\Checkout\Payment\SalesChannel;use Shopware\Core\Checkout\Payment\PaymentMethodCollection;use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;use Shopware\Core\Framework\DataAbstractionLayer\Search\Filter\EqualsFilter;use Shopware\Core\Framework\DataAbstractionLayer\Search\Sorting\FieldSorting;use Shopware\Core\Framework\Log\Package;use Shopware\Core\Framework\Plugin\Exception\DecorationPatternException;use Shopware\Core\System\SalesChannel\Entity\SalesChannelRepository;use Shopware\Core\System\SalesChannel\SalesChannelContext;use Symfony\Component\HttpFoundation\Request;use Symfony\Component\Routing\Annotation\Route;#[Route(defaults: ['_routeScope' => ['store-api']])]#[Package('checkout')]class PaymentMethodRoute extends AbstractPaymentMethodRoute{/*** @internal*/public function __construct(private readonly SalesChannelRepository $paymentMethodsRepository){}public function getDecorated(): AbstractPaymentMethodRoute{throw new DecorationPatternException(self::class);}#[Route(path: '/store-api/payment-method', name: 'store-api.payment.method', methods: ['GET', 'POST'], defaults: ['_entity' => 'payment_method'])]public function load(Request $request, SalesChannelContext $context, Criteria $criteria): PaymentMethodRouteResponse{$criteria->addFilter(new EqualsFilter('active', true))->addSorting(new FieldSorting('position'))->addAssociation('media');$result = $this->paymentMethodsRepository->search($criteria, $context);/** @var PaymentMethodCollection $paymentMethods */$paymentMethods = $result->getEntities();if ($request->query->getBoolean('onlyAvailable') || $request->request->getBoolean('onlyAvailable')) {$paymentMethods = $paymentMethods->filterByActiveRules($context);}$result->assign(['entities' => $paymentMethods, 'elements' => $paymentMethods, 'total' => $paymentMethods->count()]);return new PaymentMethodRouteResponse($result);}}