Skip to content

Commit

Permalink
Fix missing semicolon :|
Browse files Browse the repository at this point in the history
// TODO write tests & use fucking CI
  • Loading branch information
alibo committed Aug 22, 2017
1 parent fc706fd commit 01064d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Checkers/Sni.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public function setTimeout($timeout)
protected function hasSslError($error)
{
return (preg_match('/ssl/ism', $error) || preg_match('/enable crypto/ism', $error))
&& !preg_match('/timed out/ism', $error)
&& !preg_match('/timed out/ism', $error);
}

}

0 comments on commit 01064d5

Please sign in to comment.