This commit is contained in:
2022-12-12 15:04:11 +08:00
parent 707e13609f
commit 78200ebffd
3 changed files with 10 additions and 16 deletions
+2 -2
View File
@@ -18,11 +18,11 @@ interface ModelInterface
{
/**
* @param $param
* @param int|array|string|null $param
* @param null $db
* @return ModelInterface
*/
public static function findOne($param, $db = NULL): mixed;
public static function findOne(int|array|string|null $param, $db = NULL): mixed;
/**