Sonata\Component\Basket\BasketElement::serialize PHP Method

serialize() public method

public serialize ( )
    public function serialize()
    {
        return serialize(array('productId' => $this->productId, 'position' => $this->position, 'unitPrice' => $this->unitPrice, 'price' => $this->price, 'priceIncludingVat' => $this->priceIncludingVat, 'quantity' => $this->quantity, 'vatRate' => $this->vatRate, 'options' => $this->options, 'name' => $this->name, 'productCode' => $this->productCode));
    }