Exemplo n.º 1
0
 /**
  * Set State
  *
  * @param StateInterface $state State
  *
  * @return $this self Object
  */
 public function setState(StateInterface $state)
 {
     $this->state = $state;
     $this->country = $state->getCountry();
     return $this;
 }