Several changes made:
All checks were successful
The build was successful.

* Do not overload entry point
 * Automatically call Program::__construct()
 * Automatically call Program::main();
 * Fix all tests
This commit is contained in:
2018-08-12 12:52:35 +02:00
parent 8cbfca2bc9
commit 029dd9bfb4
10 changed files with 52 additions and 38 deletions

View File

@@ -22,13 +22,11 @@ final class Test {
}
}
final class Main {
public function __construct() {
final class Program {
public function main() {
$testA = Test::getInstance();
$testA->set(5);
$testB = Test::getInstance();
var_dump($testB->get());
}
} /* class */
new Main();