Skip to content

Commit

Permalink
fix strpos args order
Browse files Browse the repository at this point in the history
  • Loading branch information
quasilyte authored Mar 30, 2019
1 parent a9a72b6 commit e21b9dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ public function testGetAll()
*/
private function isTestBaseUrlSecure()
{
return strpos('https://', TESTS_BASE_URL) !== false;
return strpos(TESTS_BASE_URL, 'https://') !== false;
}
}

0 comments on commit e21b9dc

Please sign in to comment.