Skip to content

Commit

Permalink
removed some @
Browse files Browse the repository at this point in the history
  • Loading branch information
mirko-pagliai committed Jan 7, 2024
1 parent 4389243 commit 16ff5ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Utility/LinkScanner.php
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,9 @@ public function scan()
$this->dispatchEvent('LinkScanner.scanCompleted', [$this->startTime, $this->endTime, $this->ResultScan]);
} finally {
ini_set('xdebug.max_nesting_level', (string)$maxNestingLevel);
@unlink($this->lockFile);
if (file($this->lockFile)) {
unlink($this->lockFile);
}
}

return $this;
Expand Down

0 comments on commit 16ff5ca

Please sign in to comment.