Skip to content

Commit

Permalink
Always use string as the first "uniqid()" parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
pamil committed Jul 10, 2017
1 parent 9e7067a commit 1f5e74a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Context/TestContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function thereIsFile($file, $content): void
*/
public function thereIsFeatureFile($content): void
{
$this->thereIsFile(sprintf('features/%s.feature', md5(uniqid(null, true))), $content);
$this->thereIsFile(sprintf('features/%s.feature', md5(uniqid('', true))), $content);
}

/**
Expand Down

0 comments on commit 1f5e74a

Please sign in to comment.