示例#1
0
文件: Poker.php 项目: rrylee/phppoker
 /**
  * Get all card levels.
  *
  * @return self
  */
 protected function getAllCardLevels()
 {
     foreach ($this->hands as $hand) {
         $this->levels[implode(' ', $hand)] = $this->rankHandler->assignCategory($hand);
     }
     return $this;
 }