mirror of
https://gh.wpcy.net/https://github.com/freescout-help-desk/SampleModule.git
synced 2026-07-17 07:14:47 +08:00
9 lines
181 B
PHP
9 lines
181 B
PHP
<?php
|
|
require_once "vendor/autoload.php";
|
|
|
|
$hello = new Rivsen\Demo\Hello();
|
|
echo $hello->hello();
|
|
|
|
echo "\n";
|
|
$hiGirl = new Rivsen\Demo\Hello('My Goddess');
|
|
echo $hiGirl->hello();
|