3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Instantiate object as singleton with private constructor class Test1 { protected static $instance; private function __construct() {} public function getInstance() { return isset(static::$instance) ? static::$instance : static::$instance = new static; } } // Instantiate object from caller class Test2 { public function __construct() {} } for ($t = 0; $t < 10000; $t++) { $s = microtime(true); $obj = Test1::getInstance(); $s = microtime(true) - $s; $tests['Test1'][] = $s; } for ($t = 0; $t < 10000; $t++) { $s = microtime(true); $obj = new Test2; $s = microtime(true) - $s; $tests['Test2'][] = $s; } printf("Test1 first result: %.6f s\n", array_shift($tests['Test1'])); printf("Test1 last result: %.6f s\n", array_pop($tests['Test1'])); printf("Test2 first result: %.6f s\n", array_shift($tests['Test2'])); printf("Test2 last result: %.6f s\n", array_pop($tests['Test2'])); printf("\nTest1 avg result: %.6f s\n", array_sum($tests['Test1']) / count($tests['Test1'])); printf("\nTest2 avg result: %.6f s\n", array_sum($tests['Test2']) / count($tests['Test2']));
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.13, 7.3.0 - 7.3.1
Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Deprecated: Non-static method Test1::getIns
Process exited with code 137.
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28
Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getInstance() should not be called statically in /in/LsO0B on line 19 Strict Standards: Non-static method Test1::getIns
Process exited with code 137.

preferences:
243.19 ms | 438 KiB | 151 Q