Sonata\Component\Basket\BaseBasketFactory::getSessionVarName PHP Метод

getSessionVarName() защищенный Метод

Get the name of the session variable.
protected getSessionVarName ( Sonata\Component\Customer\CustomerInterface $customer = null ) : string
$customer Sonata\Component\Customer\CustomerInterface
Результат 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();
    }