예제 #1
0
파일: Country.php 프로젝트: ekyna/commerce
 /**
  * @inheritdoc
  */
 public function removeState(StateInterface $state)
 {
     if ($this->hasState($state)) {
         $state->setCountry(null);
         $this->states->removeElement($state);
     }
     return $this;
 }