Removed :mixed to keep PHP 7.1 compatibility

This commit is contained in:
Mark J Crane
2025-10-17 15:38:19 -06:00
parent 7fdb3644e7
commit a11b79e1b5

View File

@@ -1537,7 +1537,7 @@ class database {
* @param string $return_type Values can be set to <i>all</i>, <i>row</i>, or <i>column</i>.
* @return mixed Returned values can be array, string, boolean, int, or false. This is dependent on <i>$return_type</i>.
*/
public function select(string $sql, ?array $parameters = [], string $return_type = 'all'): mixed {
public function select(string $sql, ?array $parameters = [], string $return_type = 'all') {
//connect to the database if needed
if (!$this->db) {