Exemple #1
0
 /**
  * {@inheritdoc}
  */
 public function getLastState()
 {
     return $this->states->last() ?: null;
 }
Exemple #2
0
 /**
  * {@inheritdoc}
  *
  * @return $this
  */
 public function addState(PersistableGameStateInterface $state)
 {
     $state->setGame($this);
     $this->states->add($state);
     return $this;
 }