예제 #1
0
파일: Response.php 프로젝트: camigreen/ttop
 /**
  * @param \SimpleXMLElement $xml
  *
  * @return Response
  */
 public function fromXml(\SimpleXMLElement $xml)
 {
     foreach ($xml->RatedShipment as $ratedShipment) {
         $this->addShippingMethod(ShippingMethod::fromXml($ratedShipment));
     }
     return $this;
 }