-
Notifications
You must be signed in to change notification settings - Fork 435
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
Upgrade to php 7.1 #616
Upgrade to php 7.1 #616
Conversation
ad8fab1
to
66b9c87
Compare
* @param string|null $value | ||
*/ | ||
public function addOptionalArgument(string $argument, $value) | ||
public function addOptionalArgument(string $argument, $value = null): void |
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.
public function addOptionalArgument(string $argument, $value = null): void | |
public function addOptionalArgument(string $argument, string $value = null): void |
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.
@SerkanYildiz $value can also be null or an integer
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.
Ok, according to the removed php docblock it should be an string|null, that's why it was my suggested change :)
d749027
to
2c0bd02
Compare
2c0bd02
to
d0dcdca
Compare
No description provided.