public static function getInstance() { if (null === self::$instance) { self::$instance = new self(); } return self::$instance; }
public static function getInstance() { if (!self::$instance instanceof self) { self::$instance = new self(); } return self::$instance; }