Open
Description
Example:
abstract class X {
final public function test(string $var): self
}
changed to:
abstract class X {
final public function test(?string $var): self
}
result will be:
[BC] CHANGED: The parameter $var of X#test() changed from string to ?string
Real example: yiisoft/html#78
Activity