attogram/8queens

View on GitHub
index.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
declare(strict_types = 1);

namespace Attogram\EightQueens;

$autoload = 'vendor/autoload.php';
if (!is_readable($autoload)) {
    die('Vendor autoload file not found.  Please run composer install.');
}

/** @noinspection PhpIncludeInspection */
require_once $autoload;

new EightQueens();