for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\Core\Checkout\Payment\Event;
use Shopware\Core\Framework\Context;
use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;
use Shopware\Core\Framework\Log\Package;
use Symfony\Contracts\EventDispatcher\Event;
#[Package('checkout')]
class RecurringPaymentOrderCriteriaEvent extends Event
{
public function __construct(
private readonly string $orderId,
private readonly Criteria $criteria,
private readonly Context $context
) {
}
public function getOrderId(): string
return $this->orderId;
public function getCriteria(): Criteria
return $this->criteria;
public function getContext(): Context
return $this->context;