+ [misc] add function return label.

This commit is contained in:
宋辰轩
2024-06-19 13:56:18 +08:00
committed by 綦新志
parent 35cdf81791
commit 906eef80af
+2 -2
View File
@@ -28,7 +28,7 @@ class biModel extends model
* @access public
* @return array
*/
public function getFields(object $statement)
public function getFields(object $statement): array
{
if(!$statement->expr) return array();
@@ -50,7 +50,7 @@ class biModel extends model
* @access public
* @return array
*/
public function getTables(object $statement, bool $deep = false)
public function getTables(object $statement, bool $deep = false): array
{
$tables = array();
if($statement->from)