v1.0.0 2022-09-09 07:24 UTC

This package is auto-updated.

Last update: 2024-09-09 11:34:31 UTC


README

Example Usage

use BlahteSoftware\BetMath\MatchList;

ini_set('display_errors', 1); 
ini_set('display_startup_errors', 1); 
error_reporting(E_ALL);

include dirname(__FILE__) . DIRECTORY_SEPARATOR . 'vendor/autoload.php';

$matchList = new MatchList(...MatchList::getFootballMatchesArrayFrom2DArray([
    [
        'Manchester United',
        'Real Sociedad'
    ],
    [
        'Arsenal',
        'Brighton'
    ],
    [
        'Chelsea',
        'Hull City'
    ],
    [
        'Liverpool',
        'Leicester'
    ]
]));

echo $matchList->getThreeWayPermutationBetsTable();