attogram/currency-exchange-rates

View on GitHub
public/index.php

Summary

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

namespace Attogram\Currency;

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

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

new CurrencyExchangeRates();