mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-10 05:58:42 +00:00
Fixing type bugs
This commit is contained in:
parent
5f0c1b9a13
commit
a937a4f8aa
|
|
@ -17,6 +17,8 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace phpOMS\DataStorage\Database\Connection;
|
namespace phpOMS\DataStorage\Database\Connection;
|
||||||
|
|
||||||
|
use phpOMS\DataStorage\Database\DatabaseType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Database connection factory.
|
* Database connection factory.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -51,12 +51,12 @@ interface ConnectionInterface
|
||||||
/**
|
/**
|
||||||
* Get the database type.
|
* Get the database type.
|
||||||
*
|
*
|
||||||
* @return int
|
* @return string
|
||||||
*
|
*
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||||
*/
|
*/
|
||||||
public function getType() : int;
|
public function getType() : string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the database status.
|
* Get the database status.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user