User tests: Successful: Unsuccessful:
This PR adds a missing break; to a switch statement in the calendar field. Very small change
break;
I see no good way to test this, just verify that the calendar field is still working :)
I think that break is missing by design. Otherwise the value is only cast to (int) but not written to $this->$name. So it pretty much doesn't do anything after your PR ?
$this->$name
@Bakual I'm Sorry, made this PR a little bit too fast ? You're absolutely right :)
I close this PR now
I think that break is missing by design.?
Otherwise the value is only cast to (int) but not written to
$this->$name
. So it pretty much doesn't do anything after your PR