-
-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the higher entropy uniqid #27
Conversation
@@ -34,7 +34,7 @@ class InvalidArgumentExceptionTest extends PHPUnit_Framework_TestCase | |||
{ | |||
public function testFromNonExistingTypeWithNonExistingClass() | |||
{ | |||
$className = __CLASS__ . uniqid(); | |||
$className = __CLASS__ . uniqid('', true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't really work due to .
being added to the string
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For my defence the test pass ...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, but the class name is invalid. Can you add a str_replace
around it, please?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I though I did, did I push ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should I do that in the getInvalidClassNames too ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, yes, seeing it, although you overwrote the variable: naughty!
7692ca3
to
863b2a2
Compare
@@ -34,7 +34,7 @@ class InvalidArgumentExceptionTest extends PHPUnit_Framework_TestCase | |||
{ | |||
public function testFromNonExistingTypeWithNonExistingClass() | |||
{ | |||
$className = __CLASS__ . uniqid(); | |||
$className = __CLASS__ . uniqid('', true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, yes, seeing it, although you overwrote the variable: naughty!
863b2a2
to
be726c7
Compare
@mikeSimonson we can most probably drop 5.3.3 from the matrix now |
We should probably drop all EOL'd versions, tbh - means keeping only 7.0, 7.1 and 7.2 ( |
I have done the travis update in another pr. |
No description provided.