Sonata\OrderBundle\Entity\BaseOrder::getDeliveryAsArray PHP 메소드

getDeliveryAsArray() 공개 메소드

public getDeliveryAsArray ( ) : array
리턴 array
    public function getDeliveryAsArray()
    {
        return array('firstname' => $this->getShippingName(), 'lastname' => '', 'address1' => $this->getShippingAddress1(), 'postcode' => $this->getShippingPostcode(), 'city' => $this->getShippingCity(), 'country_code' => $this->getShippingCountryCode());
    }
BaseOrder