NoteCat/public/index.php

10 lines
179 B
PHP
Raw Normal View History

2020-06-28 17:19:42 +02:00
<?php
declare(strict_types=1);
require_once __DIR__ . '/../vendor/autoload.php';
use NoteCat\HelloWorld;
$hello = new HelloWorld();
echo '<b>' . $hello->getHello() . "</b>\n";