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