Version 0.9.5 beta - Core update removed dependencies for the Postgres to MySQL, since it made no sense, also removed the ODBC dependencies for MySQL since it made no sense, will be added to the current Nibiru core version v0.9.5. Also added the correct return types for the PDO adapter so it has code completion.
This commit is contained in:
@@ -7,7 +7,7 @@ namespace Nibiru;
|
||||
* Time: 11:02
|
||||
*/
|
||||
|
||||
class Psql extends Mysql implements IPsql
|
||||
class Psql implements IPsql
|
||||
{
|
||||
use Messages;
|
||||
|
||||
@@ -45,7 +45,7 @@ class Psql extends Mysql implements IPsql
|
||||
}
|
||||
}
|
||||
|
||||
public static function getInstance( $section = false )
|
||||
public static function getInstance( $section = false ): Psql
|
||||
{
|
||||
$className = get_called_class();
|
||||
if(self::$_instance==null) self::$_instance = new $className( $section );
|
||||
|
||||
Reference in New Issue
Block a user