コード例 #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;
 }