/**
  * Copies the client's shipping address to cart
  *
  * @param ClientInterface $client
  * @param CartInterface   $cart
  */
 protected function copyShippingAddress(ClientInterface $client, CartInterface $cart)
 {
     $cart->setShippingAddress($client->getShippingAddress());
 }