add PHP boilerplate
This commit is contained in:
parent
7007922739
commit
5512a19e1f
8 changed files with 1913 additions and 3 deletions
9
public/index.php
Normal file
9
public/index.php
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
require_once __DIR__ . '/../vendor/autoload.php';
|
||||
|
||||
use NoteCat\HelloWorld;
|
||||
|
||||
$hello = new HelloWorld();
|
||||
echo '<b>' . $hello->getHello() . "</b>\n";
|
||||
Loading…
Add table
Add a link
Reference in a new issue