Hi, i have code:
class ConfigReader
{
private static $instance = NULL;
protected $configData = array();
public function getInstance()
{
if( self::$instance == NULL )
{
self::$instance == new ConfigReader();
}
return self::$instance;
}
public function getConfigValue( $getName )
{
echo 'In function';
}
private function __construct()
{
$this->configData = %READ_FROM_DATABASE%;
}
private function __clone() {}
}
And for:
var_dump( ConfigReader::getInstance() )
I got: NULL
I broke by brains... Help me, please.