CHips L MINI SHELL

CHips L pro

Current Path : /opt/cpanel/ea-php54/root/usr/share/tests/pear/Log/tests/
Upload File :
Current File : //opt/cpanel/ea-php54/root/usr/share/tests/pear/Log/tests/singleton.phpt

--TEST--
Log: Singleton
--INI--
date.timezone=UTC
--FILE--
<?php

require_once 'Log.php';

$console1 = Log::singleton('console');
$console2 = Log::singleton('console');

if (is_a($console1, 'Log_console') && is_a($console2, 'Log_console'))
{
	echo "Two Log_console objects.\n";
}

if ($console1->_id == $console2->_id) {
	echo "The objects have the same ID.\n";
}

--EXPECT--
Two Log_console objects.
The objects have the same ID.

Copyright 2K16 - 2K18 Indonesian Hacker Rulez