Both declarations must be the same
This commit is contained in:
parent
cd3b01fd82
commit
9c80dd35e5
|
@ -42,7 +42,7 @@ class DBA
|
||||||
*/
|
*/
|
||||||
const NULL_DATETIME = '0001-01-01 00:00:00';
|
const NULL_DATETIME = '0001-01-01 00:00:00';
|
||||||
|
|
||||||
public static function connect()
|
public static function connect(): bool
|
||||||
{
|
{
|
||||||
return DI::dba()->connect();
|
return DI::dba()->connect();
|
||||||
}
|
}
|
||||||
|
@ -58,7 +58,7 @@ class DBA
|
||||||
/**
|
/**
|
||||||
* Perform a reconnect of an existing database connection
|
* Perform a reconnect of an existing database connection
|
||||||
*/
|
*/
|
||||||
public static function reconnect()
|
public static function reconnect(): bool
|
||||||
{
|
{
|
||||||
return DI::dba()->reconnect();
|
return DI::dba()->reconnect();
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,7 +47,7 @@ class StaticDatabase extends Database
|
||||||
*
|
*
|
||||||
* @return bool|void
|
* @return bool|void
|
||||||
*/
|
*/
|
||||||
public function connect()
|
public function connect(): bool
|
||||||
{
|
{
|
||||||
if (!is_null($this->connection) && $this->connected()) {
|
if (!is_null($this->connection) && $this->connected()) {
|
||||||
return true;
|
return true;
|
||||||
|
@ -81,7 +81,7 @@ class StaticDatabase extends Database
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Mock for locking tables */
|
/** Mock for locking tables */
|
||||||
public function lock($table)
|
public function lock($table): bool
|
||||||
{
|
{
|
||||||
if ($this->_locked) {
|
if ($this->_locked) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -94,7 +94,7 @@ class StaticDatabase extends Database
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Mock for unlocking tables */
|
/** Mock for unlocking tables */
|
||||||
public function unlock()
|
public function unlock(): bool
|
||||||
{
|
{
|
||||||
// See here: https://dev.mysql.com/doc/refman/5.7/en/lock-tables-and-transactions.html
|
// See here: https://dev.mysql.com/doc/refman/5.7/en/lock-tables-and-transactions.html
|
||||||
$this->performCommit();
|
$this->performCommit();
|
||||||
|
@ -110,7 +110,7 @@ class StaticDatabase extends Database
|
||||||
*
|
*
|
||||||
* @return bool Was the command executed successfully?
|
* @return bool Was the command executed successfully?
|
||||||
*/
|
*/
|
||||||
public function commit()
|
public function commit(): bool
|
||||||
{
|
{
|
||||||
if (!$this->performCommit()) {
|
if (!$this->performCommit()) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue