Sonata\Component\Delivery\ServiceDeliveryInterface::getCode PHP Method

getCode() public method

public getCode ( ) : string
return string
    public function getCode();

Usage Example

Exemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function setDeliveryMethod(ServiceDeliveryInterface $method = null)
 {
     $this->deliveryMethod = $method;
     $this->deliveryMethodCode = $method ? $method->getCode() : null;
 }