Muz4k/php-project-lvl1

View on GitHub
bin/brain-even

Summary

Maintainability
Test Coverage
#!/usr/bin/env php

<?php

$globalAutoloadPath = __DIR__ . '/../../../autoload.php';
$projectAutoloadPath = __DIR__ . '/../vendor/autoload.php';
if (file_exists($globalAutoloadPath)) {
    require_once $globalAutoloadPath;
} else {
    require_once $projectAutoloadPath;
}

use function Brain\Games\games\even\startEvenGame;

startEvenGame();