Changes due to rebase and realpath fix.
All checks were successful
The build was successful.

This commit is contained in:
2018-08-17 15:25:05 +01:00
parent eef673576f
commit 910cf9646a
2 changed files with 12 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
class Main {
final class Main {
public function __construct() {
$this->displayMem();
@@ -16,4 +16,8 @@ class Main {
}
new Main();
final class Program {
public function main() {
new Main();
}
}