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
Following on from #15, now it is possible to create a trigger with just the keys, it would be nice to allow variable arguments to the when function.
Examples:
$input->when("code"); // triggers when "code" is present
$input->when("code", "email"); // triggers when "code" and "email" are present
$input->when(["code" => "1234", "email"]); // triggers when "code" is "1234" and "email" is present
The text was updated successfully, but these errors were encountered:
Following on from #15, now it is possible to create a trigger with just the keys, it would be nice to allow variable arguments to the
when
function.Examples:
The text was updated successfully, but these errors were encountered: