refactor: Removed the '@' symbol from line 187 in 'misc/tools.php' as it is not recommended to use error suppression

This commit is contained in:
Junior L. Botelho (JLB) 2023-02-12 13:36:47 -03:00
parent 8b2b8af183
commit 449ec0dd7a
No known key found for this signature in database
GPG Key ID: 6A25840754F2A524
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@
function get_xpath($response)
{
$htmlDom = new DOMDocument;
@$htmlDom->loadHTML($response);
$htmlDom->loadHTML($response);
$xpath = new DOMXPath($htmlDom);
return $xpath;