Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
holtkamp committed Aug 25, 2020
1 parent 33f9276 commit 5b51862
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/TargetManager/StreamTargetManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,9 @@ public function close(): void

public function addUrl(string $url): void
{
if(filter_var($url, FILTER_VALIDATE_URL) === false){
if (\filter_var($url, FILTER_VALIDATE_URL) === false) {
$this->logger->debug('skip invalid URL: '.$url);

return;
}

Expand Down

0 comments on commit 5b51862

Please sign in to comment.