/**
  * Copies the client's billing address to cart
  *
  * @param ClientInterface $client
  * @param CartInterface   $cart
  */
 protected function copyBillingAddress(ClientInterface $client, CartInterface $cart)
 {
     $cart->setBillingAddress($client->getBillingAddress());
 }