Exemplo n.º 1
0
 /**
  * @inheritdoc
  */
 public function addState(StateInterface $state)
 {
     if (!$this->hasState($state)) {
         $state->setCountry($this);
         $this->states->add($state);
     }
     return $this;
 }