Ejemplo n.º 1
0
 /**
  * @return array
  */
 public function hands()
 {
     return [[new Hand(...StaticFixtures::two_pairs()), new Hand(...StaticFixtures::two_pairs_first_pair()), new Hand(...StaticFixtures::two_pairs_second_pair()), new Score(new Hand(...StaticFixtures::two_pairs()), (2 + 2 + 4 + 4) * TwoPairs::MULTIPLIER)], [new Hand(...StaticFixtures::three_of_a_kind()), new Hand(...StaticFixtures::three_of_a_kind_matching_pair()), null, null]];
 }
Ejemplo n.º 2
0
 /**
  * @return array
  */
 public function hands()
 {
     return [[new Hand(...StaticFixtures::one_pair()), new Hand(...StaticFixtures::three_of_a_kind_matching_pair()), new Score(new Hand(...StaticFixtures::one_pair()), (2 + 2) * OnePair::MULTIPLIER)], [new Hand(...StaticFixtures::three_of_a_kind()), new Hand(...StaticFixtures::three_of_a_kind_matching_pair()), new Score(new Hand(...StaticFixtures::three_of_a_kind()), (2 + 2) * OnePair::MULTIPLIER)], [new Hand(...StaticFixtures::getFlush()), null, null]];
 }
Ejemplo n.º 3
0
 /**
  * @return array
  */
 public function hands()
 {
     return [[new Hand(...StaticFixtures::one_pair()), 2, new Hand(...StaticFixtures::three_of_a_kind_matching_pair()), new Hand(...StaticFixtures::three_of_a_kind_matching_pair())], [new Hand(...StaticFixtures::three_of_a_kind()), 2, new Hand(...StaticFixtures::three_of_a_kind_matching_pair()), new Hand(...StaticFixtures::three_of_a_kind_matching_pair())], [new Hand(...StaticFixtures::three_of_a_kind()), 2, null, null]];
 }