Skip to main content

BillaBear Quotes Events

Here is the information relating to events relating to Quotes

Quote Created

This is triggered when a quote is created.

NameConstant For Name
billabear.quote.createdBillaBear\Event\Quote\QuoteCreated::NAME

Event Class

namespace BillaBear\Event\Quote;

use BillaBear\Entity\Quote;
use Symfony\Contracts\EventDispatcher\Event;

class QuoteCreated extends Event
{
public const string NAME = 'billabear.quote.created';

public function __construct(public readonly Quote $quote)
{
}
}