Sonata\Component\Basket\BaseBasketFactory::getSessionVarName PHP Method

getSessionVarName() protected method

Get the name of the session variable.
protected getSessionVarName ( Sonata\Component\Customer\CustomerInterface $customer = null ) : string
$customer Sonata\Component\Customer\CustomerInterface
return string
    protected function getSessionVarName(CustomerInterface $customer = null)
    {
        if (null === $customer || null === $customer->getId()) {
            return self::SESSION_BASE_NAME . 'new';
        }
        return self::SESSION_BASE_NAME . $customer->getId();
    }