remove further type hints for compatibility

This commit is contained in:
El RIDO
2019-05-10 22:04:47 +02:00
parent b1d35057cc
commit fb0c9c595e

View File

@@ -475,7 +475,7 @@ class Database extends AbstractData
* @throws PDOException
* @return array
*/
private static function _select($sql, array $params, bool $firstOnly = false)
private static function _select($sql, array $params, $firstOnly = false)
{
$statement = self::$_db->prepare($sql);
$statement->execute($params);