Temporarily fix tests.
All checks were successful
The build was successful.

This commit is contained in:
2018-09-23 17:51:47 +02:00
parent dd774be005
commit 08296110fb
6 changed files with 17 additions and 14 deletions

View File

@@ -24,9 +24,9 @@ final class Test {
final class Program {
public function main() {
$testA = Test::getInstance();
object $testA = Test::getInstance();
$testA->set(5);
$testB = Test::getInstance();
object $testB = Test::getInstance();
var_dump($testB->get());
}
} /* class */