예제 #1
0
파일: Player.php 프로젝트: JavierCane/mpwar
 public static function register(PlayerId $id, PlayerName $name)
 {
     $player = new Player($id, $name);
     $player->record(new PlayerRegistered($id->value(), $player->registrationDate(), $name->value()));
     return $player;
 }
예제 #2
0
 public function search(PlayerId $id)
 {
     return $this->players->get($id->value());
 }