Consider the following method signature:
public function foo(bool $flag = null);
Versus this signature:
public function foo(?bool $flag = null);
Does that nullable operator make any practical difference?
Consider the following method signature:
public function foo(bool $flag = null);
Versus this signature:
public function foo(?bool $flag = null);
Does that nullable operator make any practical difference?