You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$cmd->option('t')
->must(function($t) {
returnis_int($t);
}, "Option `t` must be an integer")
->must(function($t) {
return$t >= 0 && $t <= 10;
}, "Option `t` must be between 0 and 10 inclusive.");
The text was updated successfully, but these errors were encountered:
Should be able to do this:
The text was updated successfully, but these errors were encountered: