20250113#1

This commit is contained in:
User
2025-01-13 04:23:59 +03:00
parent 448128d228
commit ac572cc92b
13 changed files with 409 additions and 23 deletions

View File

@@ -80,15 +80,15 @@ interface MysqlStorageInterface {
* @param int $ln
* @param int $numPage
* @param int $count
* @return bool|MysqlStorageData
* @return bool|MysqlResultData
*/
public function find(string $sql, int $ln = 0, int $numPage = 1, int $count=0) : bool|MysqlStorageData;
public function find(string $sql, int $ln = 0, int $numPage = 1, int $count=0) : bool|MysqlResultData;
/**
* @param string $sql
* @return bool|array
*/
public function findOne(string $sql) : bool|array;
public function findOne(string $sql) : bool|MysqlResultData;
/**
* @param string $table
@@ -127,4 +127,4 @@ interface MysqlStorageInterface {
* @return string
*/
public function getLastLog() : string;
}
}