/** * * @return boolean */ public function check() { return \Andou\InstantWin::app()->getRand()->rand() <= \Andou\Instantwin::app()->getDistribution()->getOdds(); }
/** * Restituisce il numero di giocate fino a questo momento effettuate * * @return int */ protected function getPlaysCount() { return \Andou\InstantWin::app()->getPlay()->getPlaysCount(); }
<?php define("NL", "\n"); require __DIR__ . "/vendor/autoload.php"; $app = \Andou\InstantWin::app(); if ($app->win()) { echo "thou win!" . NL; } else { echo "thou not win! :(" . NL; }