lineItemsCollection)) { $this->lineItemsCollection[$id] = new LineItem($id); } return $this; } /** * @return array */ public function jsonSerialize() { return array( 'carrierId' => $this->carrierId, 'waybill' => $this->waybill, 'carrierName' => $this->carrierName, 'lineItems' => array_values($this->lineItemsCollection) ); } }