Sonata\OrderBundle\Entity\BaseOrder::getFullDelivery PHP Method

getFullDelivery() public method

Returns formatted delivery address.
public getFullDelivery ( string $sep = ', ' ) : string
$sep string
return string
    public function getFullDelivery($sep = ', ')
    {
        return BaseAddress::formatAddress($this->getDeliveryAsArray(), $sep);
    }
BaseOrder