You have a little depreciation in vendor/teamtnt/tntsearch/src/Connectors/SQLiteConnector.php on line 35 (i've verified, the others connector are ok)).
Suggestion:
It's seem that you should replace :
if ($path === false) {
throw new Exception("Database (${config['database']}) does not exist.");
}
With that when you use PHP 8.2 :
if ($path === false) {
throw new Exception("Database ({$config['database']}) does not exist.");
}
Thanks by advance ! and many thanks for your work !
You have a little depreciation in vendor/teamtnt/tntsearch/src/Connectors/SQLiteConnector.php on line 35 (i've verified, the others connector are ok)).
Suggestion:
It's seem that you should replace :
With that when you use PHP 8.2 :
Thanks by advance ! and many thanks for your work !